Repos with recipes to deploy some infrastructure services
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 

13 řádky
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 %}