123456789101112131415161718192021222324252627282930313233 |
- {% if ansible_prolog -%}
- {% from 'templates/ansible/prolog.j2' import prolog with context %}
- {{ prolog() }}
- {% endif -%}
- {% if host_deny_paranoid %}
- ALL: PARANOID
- {% endif %}
- {% if hosts_deny_nfs %}
- portmap: ALL
- lockd: ALL
- mountd: ALL
- rquotad: ALL
- statd: ALL
- {% endif %}
|