dnsmasq.yml 664 B

1234567891011121314151617181920212223242526
  1. ---
  2. - name: Install dnsmasq configuration
  3. template:
  4. src: origin-dns.conf.j2
  5. dest: /etc/dnsmasq.d/origin-dns.conf
  6. notify: restart dnsmasq
  7. - name: Deploy additional dnsmasq.conf
  8. template:
  9. src: "{{ openshift_node_dnsmasq_additional_config_file }}"
  10. dest: /etc/dnsmasq.d/openshift-ansible.conf
  11. owner: root
  12. group: root
  13. mode: 0644
  14. when: openshift_node_dnsmasq_additional_config_file is defined
  15. notify: restart dnsmasq
  16. - name: Enable dnsmasq
  17. systemd:
  18. name: dnsmasq
  19. enabled: yes
  20. state: started
  21. # Dynamic NetworkManager based dispatcher
  22. - import_tasks: dnsmasq/network-manager.yml
  23. when: network_manager_active | bool