dnsmasq.yml 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. ---
  2. - name: Check for NetworkManager service
  3. command: >
  4. systemctl show NetworkManager
  5. register: nm_show
  6. changed_when: false
  7. ignore_errors: True
  8. - name: Set fact using_network_manager
  9. set_fact:
  10. network_manager_active: "{{ True if 'ActiveState=active' in nm_show.stdout else False }}"
  11. - name: Install dnsmasq
  12. package: name=dnsmasq state=installed
  13. when: not openshift.common.is_atomic | bool
  14. register: result
  15. until: result | success
  16. - name: ensure origin/node directory exists
  17. file:
  18. state: directory
  19. path: "{{ item }}"
  20. owner: root
  21. group: root
  22. mode: '0700'
  23. with_items:
  24. - /etc/origin
  25. - /etc/origin/node
  26. # this file is copied to /etc/dnsmasq.d/ when the node starts and is removed
  27. # when the node stops. A dbus-message is sent to dnsmasq to add the same entries
  28. # so that dnsmasq doesn't need to be restarted. Once we can use dnsmasq 2.77 or
  29. # newer we can use --server-file option to update the servers dynamically and
  30. # reload them by sending dnsmasq a SIGHUP. We write the file in case someone else
  31. # triggers a restart of dnsmasq but not a node restart.
  32. - name: Install node-dnsmasq.conf
  33. template:
  34. src: node-dnsmasq.conf.j2
  35. dest: /etc/origin/node/node-dnsmasq.conf
  36. - name: Install dnsmasq configuration
  37. template:
  38. src: origin-dns.conf.j2
  39. dest: /etc/dnsmasq.d/origin-dns.conf
  40. notify: restart dnsmasq
  41. - name: Deploy additional dnsmasq.conf
  42. template:
  43. src: "{{ openshift_node_dnsmasq_additional_config_file }}"
  44. dest: /etc/dnsmasq.d/openshift-ansible.conf
  45. owner: root
  46. group: root
  47. mode: 0644
  48. when: openshift_node_dnsmasq_additional_config_file is defined
  49. notify: restart dnsmasq
  50. - name: Enable dnsmasq
  51. systemd:
  52. name: dnsmasq
  53. enabled: yes
  54. state: started
  55. # Dynamic NetworkManager based dispatcher
  56. - include_tasks: dnsmasq/network-manager.yml
  57. when: network_manager_active | bool
  58. # Relies on ansible in order to configure static config
  59. - include_tasks: dnsmasq/no-network-manager.yml
  60. when: not network_manager_active | bool