-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement package version locking on Debian and RedHat.
Very slightly refactor too as tasks/main.yml would have become too big with too many whens.
- Loading branch information
Showing
6 changed files
with
124 additions
and
63 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
--- | ||
- name: (Gentoo) Stop auditd | ||
ansible.builtin.service: | ||
name: auditd | ||
state: stopped | ||
enabled: false | ||
when: | ||
- ansible_facts.services['auditd'] is defined | ||
tags: install | ||
|
||
- name: (Gentoo) Install auditbeat portage | ||
community.general.portage: | ||
package: "{{ auditbeat_portage.package }}" | ||
getbinpkg: "{{ auditbeat_portage.getbinpkg|default(omit) }}" | ||
getbinpkgonly: "{{ auditbeat_portage.getbinpkgonly|default(omit) }}" | ||
tags: install |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters