mirror of
https://gitlab.sectorq.eu/jaydee/ansible.git
synced 2025-01-23 20:39:26 +00:00
11 lines
214 B
YAML
11 lines
214 B
YAML
|
- hosts: odroid_cluster
|
||
|
name: Install apparmor
|
||
|
become: true
|
||
|
tasks:
|
||
|
- name: Install apparmor
|
||
|
ansible.builtin.apt:
|
||
|
name:
|
||
|
- apparmor
|
||
|
- apparmor-utils
|
||
|
state: present
|