diff --git a/roles/container_runtime/tasks/common/setup_docker_symlink.yml b/roles/container_runtime/tasks/common/setup_docker_symlink.yml index 960915522c6..113eccd5e6e 100644 --- a/roles/container_runtime/tasks/common/setup_docker_symlink.yml +++ b/roles/container_runtime/tasks/common/setup_docker_symlink.yml @@ -11,11 +11,6 @@ failed_when: - results.rc != 0 - - name: ensure the unmount of top level mount point - mount: - path: "{{ docker_default_storage_path }}" - state: unmounted - - name: "Set the selinux context on {{ docker_alt_storage_path }}" command: "semanage fcontext -a -e {{ docker_default_storage_path }} {{ docker_alt_storage_path }}" register: results @@ -26,6 +21,11 @@ - name: "restorecon the {{ docker_alt_storage_path }}" command: "restorecon -r {{ docker_alt_storage_path }}" + - name: ensure the unmount of top level mount point + mount: + path: "{{ docker_default_storage_path }}" + state: unmounted + - name: Remove the old docker location file: state: absent