Explorar el Código

Merge pull request #2038 from dgoodwin/node-dep-start

Attempt to fix containerized node start failure with Docker 1.10.
Scott Dodson hace 9 años
padre
commit
d93c300e16
Se han modificado 1 ficheros con 4 adiciones y 0 borrados
  1. 4 0
      roles/openshift_node/tasks/main.yml

+ 4 - 0
roles/openshift_node/tasks/main.yml

@@ -110,6 +110,10 @@
   changed_when: false
   when: openshift.common.is_containerized | bool
 
+- name: Start and enable node dep
+  service: name={{ openshift.common.service_type }}-node-dep enabled=yes state=started
+  when: openshift.common.is_containerized | bool
+
 - name: Start and enable node
   service: name={{ openshift.common.service_type }}-node enabled=yes state=started
   register: node_start_result