main.yml 234 B

123456789101112
  1. ---
  2. - name: Apply SELinux contexts
  3. ansible.builtin.shell:
  4. cmd: restorecon -r "{{ item }}"
  5. with_items:
  6. - "{{ persistent_container_dirs }}"
  7. - name: Daemon Reload
  8. ansible.builtin.systemd_service:
  9. daemon_reload: true