Enable apparmor service

Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
Knut Ahlers 2024-08-28 15:33:43 +02:00
parent 1d097a5af3
commit 0bd1dc3302
Signed by: luzifer
SSH Key Fingerprint: SHA256:/xtE5lCgiRDQr8SLxHMS92ZBlACmATUmF1crK16Ks4E
2 changed files with 5 additions and 2 deletions

View File

@ -7,7 +7,7 @@ pkgname=(
luzifer-gui
luzifer-lenovo-gui
)
pkgver=0.10.0
pkgver=0.10.1
pkgrel=1
pkgdesc='System configuration for @luzifer systems'
arch=(any)

View File

@ -3,7 +3,10 @@
- name: Enable auditd
systemd:
enabled: true
name: auditd.service
name: '{{ item }}'
state: started
with_items:
- auditd.service
- apparmor.service
...