summaryrefslogtreecommitdiffstats
path: root/roles/diagnostics/tasks/rkhunter.yml
blob: dafcf8e6907e927cca3dd94d4f6e9809234aa3f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
- name: Installation du HIDS rkhunter
  package:
    name: "{{ item }}"
    state: present
  loop:
    - rkhunter
    - unhide

- name: Configuration de rkhunter
  template:
    src: rkhunter.conf.j2
    dest: /etc/rkhunter.conf
    mode: 0640