Repos with recipes to deploy some infrastructure services
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

13 righe
332 B

  1. # Ansible managed file
  2. options {
  3. directory "{{ pdns_bind_backend_dir }}";
  4. };
  5. {% if managed_domains is defined %}
  6. {% for domain in managed_domains | default([], true) %}
  7. zone "{{ domain }}" IN {
  8. type master;
  9. file "{{ pdns_bind_backend_dir }}/{{ domain | replace('/','-') }}.zone";
  10. };
  11. {% endfor %}
  12. {% endif %}