ansible/playbooks/10_install_apparmor.yml
2023-10-26 19:19:10 +02:00

12 lines
233 B
YAML

- hosts: odroid_cluster
name: Install apparmor
become: true
gather_facts: no
tasks:
- name: Install apparmor
ansible.builtin.apt:
name:
- apparmor
- apparmor-utils
state: present