docker/tasks/apparmor.yaml
Simon Cornet de7900fc05
All checks were successful
ci/woodpecker/push/linting Pipeline was successful
chore: migrate bare ansible_* facts to ansible_facts[] syntax
2026-05-19 09:19:03 +02:00

10 lines
219 B
YAML

---
# remove and purge apparmor
- name: "purge apparmor"
ansible.builtin.apt:
name: "apparmor"
state: "absent"
purge: true
when: 'ansible_facts["distribution"] == "Debian"'
notify: "reboot container"