ansible/playbooks/10_install_apparmor.yml

12 lines
233 B
YAML
Raw Normal View History

2022-12-14 02:23:34 +01:00
- hosts: odroid_cluster
name: Install apparmor
become: true
2023-10-26 19:19:10 +02:00
gather_facts: no
2022-12-14 02:23:34 +01:00
tasks:
- name: Install apparmor
ansible.builtin.apt:
name:
- apparmor
- apparmor-utils
state: present