]> git.phdru.name Git - ansible.git/blob - playbooks/roles/debian/security/tasks/main.yml
Feat(debian/security): Configure `/etc/chkrootkit.conf`
[ansible.git] / playbooks / roles / debian / security / tasks / main.yml
1 - name: Install chkrootkit
2   become: true
3   apt:
4     cache_valid_time: 3600
5     install_recommends: no
6     name: ['chkrootkit']
7     state: latest
8     update_cache: yes
9
10 - name: Configure chkrootkit
11   become: true
12   lineinfile:
13     path: /etc/chkrootkit.conf
14     search_string: 'RUN_DAILY="false"'
15     line: 'RUN_DAILY="true"'