-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* account for different amazon2 syntax * cleanup * kill auditd on Amazon
- Loading branch information
Greg Malkov
authored
Feb 8, 2019
1 parent
f0d4278
commit c99c322
Showing
4 changed files
with
19 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
--- | ||
- name: check auditd status | ||
command: service auditd status | ||
register: auditd_status | ||
ignore_errors: true | ||
changed_when: false | ||
|
||
- name: Stop service auditd | ||
command: service auditd stop | ||
when: auditd_status.rc == 0 | ||
|
||
- name: Disable service auditd | ||
command: systemctl disable auditd | ||
when: auditd_status.rc == 0 |
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