Browse Source

Merge pull request #3305 from giuseppe/conntrack-tools

node: ensure conntrack-tools is installed
Scott Dodson 8 years ago
parent
commit
08b1e9074f
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