diff options
author | Scott Dodson <sdodson@redhat.com> | 2017-02-10 13:52:53 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-10 13:52:53 -0500 |
commit | 08b1e9074f774c120f46192ee79965c713a7042c (patch) | |
tree | e29ea79379c2a75da5dd532863e7f103cc00a20e /roles | |
parent | a2a4f81529999c8d82fd554becdbba7fabf872cf (diff) | |
parent | e15552ef87be796f07256b43acc1b0c87e681dcd (diff) | |
download | openshift-08b1e9074f774c120f46192ee79965c713a7042c.tar.gz openshift-08b1e9074f774c120f46192ee79965c713a7042c.tar.bz2 openshift-08b1e9074f774c120f46192ee79965c713a7042c.tar.xz openshift-08b1e9074f774c120f46192ee79965c713a7042c.zip |
Merge pull request #3305 from giuseppe/conntrack-tools
node: ensure conntrack-tools is installed
Diffstat (limited to 'roles')
-rw-r--r-- | roles/openshift_node/tasks/main.yml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/roles/openshift_node/tasks/main.yml b/roles/openshift_node/tasks/main.yml index 3e888b77f..691227915 100644 --- a/roles/openshift_node/tasks/main.yml +++ b/roles/openshift_node/tasks/main.yml @@ -60,6 +60,12 @@ state: present when: openshift.common.use_openshift_sdn and not openshift.common.is_containerized | bool +- name: Install conntrack-tools package + package: + name: "conntrack-tools" + state: present + when: not openshift.common.is_containerized | bool + - name: Install the systemd units include: systemd_units.yml |