12345678910111213141516171819202122232425262728293031323334353637383940 |
- - include_tasks: base.yml
- tags:
- - 'base'
- - 'ipv6'
- - include_tasks: dotfiles.yml
- when: with_dotfiles|bool
- tags:
- - 'base'
- - include_tasks: ssl.yml
- when: ssl_certs|length > 0 or ssl_certs_auto|length > 0
- tags:
- - 'ssl'
- - include_tasks: dns.yml
- tags:
- - 'dns'
- - include_tasks: firewall.yml
- when: with_firewall|bool
- tags:
- - 'firewall'
- - include_tasks: security.yml
- tags:
- - 'security'
- - 'logcheck'
- - include_tasks: smtp.yml
- when: with_postfix|bool or with_mail_aliases|bool
- tags:
- - 'smtp'
- - include_tasks: dkim.yml
- when: with_opendkim|bool
- tags:
- - 'dkim'
- - include_tasks: ssh.yml
- tags:
- - 'ssh'
- - include_tasks: smartd.yml
- when: with_smartd|bool
- tags:
- - 'smartd'
- # vim: ft=yaml.ansible
|