diff options
| author | Guilhem Moulin <guilhem@fripost.org> | 2025-01-28 16:09:33 +0100 | 
|---|---|---|
| committer | Guilhem Moulin <guilhem@fripost.org> | 2025-01-28 16:16:29 +0100 | 
| commit | 93e778134630e6d5f71096dff76a995854a15da9 (patch) | |
| tree | 706b69cc3dc92da18b570bfeffdc6f821dbaabd9 /roles | |
| parent | c7a9f907a61cf06c73c56628210257b639a6bb50 (diff) | |
Skip auditd setup.
Arguably not very useful without further configuration.
Diffstat (limited to 'roles')
| -rw-r--r-- | roles/common/tasks/main.yml | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/roles/common/tasks/main.yml b/roles/common/tasks/main.yml index 1dc286e..293d22b 100644 --- a/roles/common/tasks/main.yml +++ b/roles/common/tasks/main.yml @@ -1,41 +1,41 @@  ---  - import_tasks: sysctl.yml    tags: sysctl  - import_tasks: hosts.yml  - import_tasks: apt.yml    tags: apt  - name: Install intel-microcode    apt: pkg=intel-microcode    when: "ansible_processor[1] is search('^(Genuine)?Intel.*') and not ansible_virtualization_role == 'guest'"    tags: intel  - import_tasks: firewall.yml    tags:      - firewall      - iptables      - nftables  - import_tasks: stunnel.yml    tags: stunnel    when: "'webmail' in group_names and 'LDAP_provider' not in group_names" -- import_tasks: auditd.yml -  tags: auditd +#- import_tasks: auditd.yml +#  tags: auditd  - import_tasks: resolved.yml    tags:      - resolv      - resolved      - dns  - import_tasks: unbound.yml    tags:      - unbound      - dns    when: "ansible_processor[1] is search('^(Genuine)?Intel.*') and not ansible_virtualization_role == 'guest'"  - import_tasks: rkhunter.yml    tags: rkhunter  - import_tasks: clamav.yml    tags: clamav  - import_tasks: fail2ban.yml    tags: fail2ban  - import_tasks: smart.yml    tags:      - smartmontools      - smart | 
