summaryrefslogtreecommitdiffstats
path: root/roles/openshift_node_dnsmasq
diff options
context:
space:
mode:
authorTim Bielawa <tbielawa@redhat.com>2016-06-22 16:58:09 -0400
committerTim Bielawa <tbielawa@redhat.com>2016-06-22 16:58:09 -0400
commit45a0439eba8413053fd66bdbd521519d65b14ff1 (patch)
tree4740268459e834e164a67b3666f01074ea9bd289 /roles/openshift_node_dnsmasq
parent7ac20f9cef4dbbf9787e757dd1938d28483a22a7 (diff)
downloadopenshift-45a0439eba8413053fd66bdbd521519d65b14ff1.tar.gz
openshift-45a0439eba8413053fd66bdbd521519d65b14ff1.tar.bz2
openshift-45a0439eba8413053fd66bdbd521519d65b14ff1.tar.xz
openshift-45a0439eba8413053fd66bdbd521519d65b14ff1.zip
NetworkManager service never changes
* Don't ever report the NetworkManager service as changed when preparing to set the 'network_manager_active' fact
Diffstat (limited to 'roles/openshift_node_dnsmasq')
-rw-r--r--roles/openshift_node_dnsmasq/tasks/main.yml10
1 files changed, 5 insertions, 5 deletions
diff --git a/roles/openshift_node_dnsmasq/tasks/main.yml b/roles/openshift_node_dnsmasq/tasks/main.yml
index 4cb24469d..7147b78f5 100644
--- a/roles/openshift_node_dnsmasq/tasks/main.yml
+++ b/roles/openshift_node_dnsmasq/tasks/main.yml
@@ -3,15 +3,16 @@
command: >
systemctl show NetworkManager
register: nm_show
-
+ changed_when: false
+
- name: Set fact using_network_manager
set_fact:
network_manager_active: "{{ True if 'ActiveState=active' in nm_show.stdout else False }}"
-
+
- name: Install dnsmasq
action: "{{ ansible_pkg_mgr }} name=dnsmasq state=installed"
when: not openshift.common.is_atomic | bool
-
+
- name: Install dnsmasq configuration
template:
src: origin-dns.conf.j2
@@ -20,8 +21,7 @@
# Dynamic NetworkManager based dispatcher
- include: ./network-manager.yml
when: network_manager_active | bool
-
+
# Relies on ansible in order to configure static config
- include: ./no-network-manager.yml
when: not network_manager_active | bool
-