Move setup to roles

Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
Knut Ahlers 2024-08-28 20:21:34 +02:00
parent 75d7af83ce
commit 172232806a
Signed by: luzifer
SSH Key Fingerprint: SHA256:/xtE5lCgiRDQr8SLxHMS92ZBlACmATUmF1crK16Ks4E
12 changed files with 8 additions and 5 deletions

View File

@ -7,7 +7,7 @@ pkgname=(
luzifer-gui
luzifer-lenovo-gui
)
pkgver=0.11.1
pkgver=0.12.0
pkgrel=1
pkgdesc='System configuration for @luzifer systems'
arch=(any)
@ -75,6 +75,7 @@ package_luzifer-base() {
depends+=(
apparmor
audit
clamav
)
# Add custom sytem utils

View File

@ -0,0 +1,2 @@
[defaults]
roles_path = roles

View File

@ -1,9 +1,9 @@
---
- hosts: all
tasks:
- include_tasks: tasks/systemtime.yaml
- include_tasks: tasks/locale.yaml
- include_tasks: tasks/security.yaml
roles:
- { role: locale }
- { role: security }
- { role: systemtime }
...