post.yml 769 B

1234567891011121314151617181920212223242526
  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. register: dockerstat
  18. - import_tasks: setup_docker_symlink.yml
  19. when:
  20. - openshift_use_crio | bool
  21. - dockerstat.stat.islnk is defined and not (dockerstat.stat.islnk | bool)