setup_docker_symlink.yml 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. ---
  2. - block:
  3. - name: stop the current running docker
  4. systemd:
  5. state: stopped
  6. name: "{{ openshift_docker_service_name }}"
  7. - name: copy "{{ docker_default_storage_path }}" to "{{ docker_alt_storage_path }}"
  8. command: "cp -r {{ docker_default_storage_path }} {{ docker_alt_storage_path }}"
  9. register: results
  10. failed_when:
  11. - results.rc != 0
  12. - name: ensure the unmount of top level mount point
  13. mount:
  14. path: "{{ docker_default_storage_path }}"
  15. state: unmounted
  16. - name: "Set the selinux context on {{ docker_alt_storage_path }}"
  17. command: "semanage fcontext -a -e {{ docker_default_storage_path }} {{ docker_alt_storage_path }}"
  18. environment:
  19. LANG: C
  20. register: results
  21. failed_when:
  22. - results.rc == 1
  23. - "'already exists' not in results.stderr"
  24. - name: "restorecon the {{ docker_alt_storage_path }}"
  25. command: "restorecon -r {{ docker_alt_storage_path }}"
  26. - name: Remove the old docker location
  27. file:
  28. state: absent
  29. path: "{{ docker_default_storage_path }}"
  30. - name: Setup the link
  31. file:
  32. state: link
  33. src: "{{ docker_alt_storage_path }}"
  34. path: "{{ docker_default_storage_path }}"
  35. - name: start docker
  36. systemd:
  37. state: started
  38. name: "{{ openshift_docker_service_name }}"