diff options
author | Scott Dodson <sdodson@redhat.com> | 2016-10-24 11:20:45 -0400 |
---|---|---|
committer | Scott Dodson <sdodson@redhat.com> | 2016-10-24 13:16:19 -0400 |
commit | 82f7b7eab48538381cdc76329905e1bba8cfea77 (patch) | |
tree | fc50f72deafd182854e3be71f239dce3d9c10f47 /roles | |
parent | 4a5b2dd0510ac092da44a09730a734fe9ef7e112 (diff) | |
download | openshift-82f7b7eab48538381cdc76329905e1bba8cfea77.tar.gz openshift-82f7b7eab48538381cdc76329905e1bba8cfea77.tar.bz2 openshift-82f7b7eab48538381cdc76329905e1bba8cfea77.tar.xz openshift-82f7b7eab48538381cdc76329905e1bba8cfea77.zip |
Enable dnsmasq service
Diffstat (limited to 'roles')
-rw-r--r-- | roles/openshift_node_dnsmasq/tasks/main.yml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/roles/openshift_node_dnsmasq/tasks/main.yml b/roles/openshift_node_dnsmasq/tasks/main.yml index bd9a0ffb6..396c27295 100644 --- a/roles/openshift_node_dnsmasq/tasks/main.yml +++ b/roles/openshift_node_dnsmasq/tasks/main.yml @@ -29,6 +29,12 @@ when: openshift_node_dnsmasq_additional_config_file is defined notify: restart dnsmasq +- name: Enable dnsmasq + service: + name: dnsmasq + enabled: yes + state: started + # Dynamic NetworkManager based dispatcher - include: ./network-manager.yml when: network_manager_active | bool |