dnsmasq.yml 998 B

123456789101112131415161718192021222324252627282930313233343536373839
  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: Create override dnsmasq systemd unit directory
  17. file:
  18. path: /etc/systemd/system/dnsmasq.service.d
  19. state: directory
  20. - name: Copy systemd dnsmasq unit override file
  21. copy:
  22. src: override.conf
  23. dest: /etc/systemd/system/dnsmasq.service.d/override.conf
  24. notify:
  25. - reload systemd units
  26. - restart dnsmasq
  27. - name: Enable dnsmasq
  28. systemd:
  29. name: dnsmasq
  30. enabled: yes
  31. state: started
  32. # Dynamic NetworkManager based dispatcher
  33. - import_tasks: dnsmasq/network-manager.yml
  34. when: network_manager_active | bool