post.yml 813 B

12345678910111213141516171819202122232425262728
  1. ---
  2. - name: Ensure /var/lib/containers exists
  3. file:
  4. path: /var/lib/containers
  5. state: directory
  6. - name: Fix SELinux Permissions on /var/lib/containers
  7. command: "restorecon -R /var/lib/containers/"
  8. changed_when: false
  9. - meta: flush_handlers
  10. # This needs to run after docker is restarted to account for proxy settings.
  11. # registry_auth is called directly with import_role in some places, so we
  12. # have to put it in the root of the tasks/ directory.
  13. - import_tasks: ../registry_auth.yml
  14. - name: stat the docker data dir
  15. stat:
  16. path: "{{ docker_default_storage_path }}"
  17. get_checksum: false
  18. get_mime: false
  19. register: dockerstat
  20. - import_tasks: setup_docker_symlink.yml
  21. when:
  22. - openshift_use_crio | bool
  23. - dockerstat.stat.islnk is defined and not (dockerstat.stat.islnk | bool)