Browse Source

Merge pull request #6178 from giuseppe/copy-docker-to-alt-storage-path

docker: copy Docker metadata to the alternative storage path
Michael Gugino 7 years ago
parent
commit
174ada425a
1 changed files with 5 additions and 4 deletions
  1. 5 4
      roles/docker/tasks/main.yml

+ 5 - 4
roles/docker/tasks/main.yml

@@ -60,10 +60,11 @@
         state: stopped
         name: "{{ openshift.docker.service_name }}"
 
-    - name: "Ensure {{ docker_alt_storage_path }} exists"
-      file:
-        path: "{{ docker_alt_storage_path }}"
-        state: directory
+    - name: copy "{{ docker_default_storage_path }}" to "{{ docker_alt_storage_path }}"
+      command: "cp -r {{ docker_default_storage_path }} {{ docker_alt_storage_path }}"
+      register: results
+      failed_when:
+        - results.rc != 0
 
     - name: "Set the selinux context on {{ docker_alt_storage_path }}"
       command: "semanage fcontext -a -e {{ docker_default_storage_path }} {{ docker_alt_storage_path }}"