mirror of
https://github.com/trailofbits/algo
synced 2024-11-13 19:12:06 +00:00
17 lines
365 B
YAML
17 lines
365 B
YAML
|
- name: Auditd installed
|
||
|
apt: name=auditd state=latest
|
||
|
|
||
|
- name: Auditd rules configured
|
||
|
template: src=audit.rules.j2 dest=/etc/audit/audit.rules
|
||
|
notify:
|
||
|
- restart auditd
|
||
|
|
||
|
- name: Auditd configured
|
||
|
template: src=auditd.conf.j2 dest=/etc/audit/auditd.conf
|
||
|
notify:
|
||
|
- restart auditd
|
||
|
|
||
|
- name: Enable services
|
||
|
service: name=auditd enabled=yes
|
||
|
|