Browse Source

node: ensure conntrack-tools is installed

Closes: https://bugzilla.redhat.com/show_bug.cgi?id=1420182

Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
Giuseppe Scrivano 8 years ago
parent
commit
e15552ef87
1 changed files with 6 additions and 0 deletions
  1. 6 0
      roles/openshift_node/tasks/main.yml

+ 6 - 0
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