mirror of
https://github.com/nikdoof/ansible-cis.git
synced 2025-12-13 09:32:15 +00:00
18 lines
436 B
YAML
18 lines
436 B
YAML
---
|
|
- name: Install AIDE
|
|
ansible.builtin.package:
|
|
name: aide
|
|
state: installed
|
|
notify: init aide
|
|
- name: Install AIDE crontab
|
|
ansible.builtin.copy:
|
|
dest: /etc/cron.d/aide
|
|
owner: root
|
|
group: root
|
|
mode: "0600"
|
|
content: |
|
|
SHELL=/bin/bash
|
|
PATH=/sbin:/bin:/usr/sbin:/usr/bin
|
|
MAILTO=root
|
|
0 5 * * * root /usr/sbin/aide --update; mv /var/lib/aide/aide.db.new.gz /var/lib/aide/aide.db.gz
|