Browse Source

Docker storage fix (#812)

* Added task to stop docker before templating config

* Rearranged storage roles in rhv install
Chandler Wilkerson 7 years ago
parent
commit
8d14089a84
1 changed files with 3 additions and 2 deletions
  1. 3 2
      roles/docker-storage-setup/tasks/main.yaml

+ 3 - 2
roles/docker-storage-setup/tasks/main.yaml

@@ -1,4 +1,7 @@
 ---
+- name: stop docker
+  service: name=docker state=stopped
+
 - block:
     - name: create the docker-storage config file
       template:
@@ -7,7 +10,6 @@
         owner: root
         group: root
         mode: 0644
-
   when:
     - ansible_distribution_version | version_compare('7.4', '>=')
     - ansible_distribution == "RedHat"
@@ -20,7 +22,6 @@
         owner: root
         group: root
         mode: 0644
-
   when:
     - ansible_distribution_version | version_compare('7.4', '<')
     - ansible_distribution == "RedHat"