summaryrefslogtreecommitdiffstats
path: root/roles/diagnostics/tasks/aide.yml
blob: 72fc4b16607d84cc23e686760d94749f3d2ad846 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
- name: Installation du HIDS AIDE
  yum: name=aide state=present
  when: ansible_pkg_mgr == "yum"

- name: Installation du HIDS AIDE
  dnf: name=aide state=present
  when: ansible_pkg_mgr == "dnf"

- name: Activation Cron du HIDS AIDE
  copy:
    src: aidereport.sh
    dest: /etc/cron.daily/z-aidereport.sh
    mode: 0755