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-gui
luzifer-lenovo-gui luzifer-lenovo-gui
) )
pkgver=0.10.0 pkgver=0.10.1
pkgrel=1 pkgrel=1
pkgdesc='System configuration for @luzifer systems' pkgdesc='System configuration for @luzifer systems'
arch=(any) arch=(any)

View file

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