mirror of
https://github.com/dev-sec/ansible-collection-hardening
synced 2024-11-10 09:14:18 +00:00
Merge pull request #427 from dev-sec/snoopotic-fix/add_auditd_restart_handler
add restart-auditd handler after configuration change
This commit is contained in:
commit
2882a15ee1
6 changed files with 13 additions and 4 deletions
|
@ -44,7 +44,7 @@
|
||||||
shell: "bash /tmp/install.sh -s -- -P cinc-auditor -v 4"
|
shell: "bash /tmp/install.sh -s -- -P cinc-auditor -v 4"
|
||||||
|
|
||||||
- name: Execute cinc-auditor tests
|
- name: Execute cinc-auditor tests
|
||||||
command: "/opt/cinc-auditor/bin/cinc-auditor exec --no-show-progress --no-color --no-distinct-exit https://github.com/dev-sec/mysql-baseline.git"
|
command: "/opt/cinc-auditor/bin/cinc-auditor exec --no-show-progress --no-color --no-distinct-exit supermarket://dev-sec/mysql-baseline"
|
||||||
register: test_results
|
register: test_results
|
||||||
changed_when: false
|
changed_when: false
|
||||||
ignore_errors: true
|
ignore_errors: true
|
||||||
|
|
|
@ -47,7 +47,7 @@
|
||||||
shell: "bash /tmp/install.sh -s -- -P cinc-auditor -v 4"
|
shell: "bash /tmp/install.sh -s -- -P cinc-auditor -v 4"
|
||||||
|
|
||||||
- name: Execute cinc-auditor tests
|
- name: Execute cinc-auditor tests
|
||||||
command: "/opt/cinc-auditor/bin/cinc-auditor exec --no-show-progress --no-color --no-distinct-exit https://github.com/dev-sec/nginx-baseline.git"
|
command: "/opt/cinc-auditor/bin/cinc-auditor exec --no-show-progress --no-color --no-distinct-exit supermarket://dev-sec/nginx-baseline"
|
||||||
register: test_results
|
register: test_results
|
||||||
changed_when: false
|
changed_when: false
|
||||||
ignore_errors: true
|
ignore_errors: true
|
||||||
|
|
|
@ -51,7 +51,7 @@
|
||||||
shell: "bash /tmp/install.sh -s -- -P cinc-auditor -v 4"
|
shell: "bash /tmp/install.sh -s -- -P cinc-auditor -v 4"
|
||||||
|
|
||||||
- name: Execute cinc-auditor tests
|
- name: Execute cinc-auditor tests
|
||||||
command: "/opt/cinc-auditor/bin/cinc-auditor exec --no-show-progress --no-color --no-distinct-exit https://github.com/dev-sec/linux-baseline.git"
|
command: "/opt/cinc-auditor/bin/cinc-auditor exec --no-show-progress --no-color --no-distinct-exit supermarket://dev-sec/linux-baseline"
|
||||||
register: test_results
|
register: test_results
|
||||||
changed_when: false
|
changed_when: false
|
||||||
ignore_errors: true
|
ignore_errors: true
|
||||||
|
|
|
@ -42,7 +42,7 @@
|
||||||
shell: "bash /tmp/install.sh -s -- -P cinc-auditor -v 4"
|
shell: "bash /tmp/install.sh -s -- -P cinc-auditor -v 4"
|
||||||
|
|
||||||
- name: Execute cinc-auditor tests
|
- name: Execute cinc-auditor tests
|
||||||
command: "/opt/cinc-auditor/bin/cinc-auditor exec --no-show-progress --no-color --no-distinct-exit https://github.com/dev-sec/ssh-baseline.git"
|
command: "/opt/cinc-auditor/bin/cinc-auditor exec --no-show-progress --no-color --no-distinct-exit supermarket://dev-sec/nginx-baseline"
|
||||||
register: test_results
|
register: test_results
|
||||||
changed_when: false
|
changed_when: false
|
||||||
ignore_errors: true
|
ignore_errors: true
|
||||||
|
|
|
@ -1,3 +1,9 @@
|
||||||
---
|
---
|
||||||
- name: Update-initramfs
|
- name: Update-initramfs
|
||||||
command: 'update-initramfs -u'
|
command: 'update-initramfs -u'
|
||||||
|
|
||||||
|
- name: restart-auditd
|
||||||
|
command:
|
||||||
|
cmd: 'service auditd restart' # rhel: see: https://access.redhat.com/solutions/2664811
|
||||||
|
warn: false # sadly 'service' module fails in that case also by using 'use: service'
|
||||||
|
when: molecule_yml is not defined # restarting auditd in a container does not work
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
package:
|
package:
|
||||||
name: '{{ auditd_package }}'
|
name: '{{ auditd_package }}'
|
||||||
state: 'present'
|
state: 'present'
|
||||||
|
tags: auditd
|
||||||
|
|
||||||
- name: Configure auditd | package-08
|
- name: Configure auditd | package-08
|
||||||
template:
|
template:
|
||||||
|
@ -11,3 +12,5 @@
|
||||||
owner: 'root'
|
owner: 'root'
|
||||||
group: 'root'
|
group: 'root'
|
||||||
mode: '0640'
|
mode: '0640'
|
||||||
|
notify: 'restart-auditd'
|
||||||
|
tags: auditd
|
||||||
|
|
Loading…
Reference in a new issue