diff options
author | Scott Dodson <sdodson@redhat.com> | 2016-11-21 16:26:21 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-21 16:26:21 -0500 |
commit | 4954982b72451f82bd40802b0bdf39379ad4bdf1 (patch) | |
tree | b890599b1719b630e3fae8197f9d8417e9a29c20 /roles/openshift_node_dnsmasq | |
parent | e34870e2b1b452f9719d14911d7a2a557ca701bd (diff) | |
parent | 7e0c346c8406eb6142e8d38fdec4e13236f3cdc6 (diff) | |
download | openshift-4954982b72451f82bd40802b0bdf39379ad4bdf1.tar.gz openshift-4954982b72451f82bd40802b0bdf39379ad4bdf1.tar.bz2 openshift-4954982b72451f82bd40802b0bdf39379ad4bdf1.tar.xz openshift-4954982b72451f82bd40802b0bdf39379ad4bdf1.zip |
Merge pull request #2818 from mtnbikenc/package-refactor
Refactor to use Ansible package module
Diffstat (limited to 'roles/openshift_node_dnsmasq')
-rw-r--r-- | roles/openshift_node_dnsmasq/tasks/main.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roles/openshift_node_dnsmasq/tasks/main.yml b/roles/openshift_node_dnsmasq/tasks/main.yml index 396c27295..51820210d 100644 --- a/roles/openshift_node_dnsmasq/tasks/main.yml +++ b/roles/openshift_node_dnsmasq/tasks/main.yml @@ -10,7 +10,7 @@ network_manager_active: "{{ True if 'ActiveState=active' in nm_show.stdout else False }}" - name: Install dnsmasq - action: "{{ ansible_pkg_mgr }} name=dnsmasq state=installed" + package: name=dnsmasq state=installed when: not openshift.common.is_atomic | bool - name: Install dnsmasq configuration |