dnsmasq_install.yml 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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 is succeeded
  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. # Relies on ansible in order to configure static config
  37. - include_tasks: dnsmasq/no-network-manager.yml
  38. when: not network_manager_active | bool