Repos with recipes to deploy some infrastructure services
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

13 rivejä
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 %}