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