Move setup to roles
Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
parent
75d7af83ce
commit
172232806a
12 changed files with 8 additions and 5 deletions
3
PKGBUILD
3
PKGBUILD
|
@ -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
|
||||
|
|
2
base/usr/share/luzifer/base-setup/ansible.cfg
Normal file
2
base/usr/share/luzifer/base-setup/ansible.cfg
Normal file
|
@ -0,0 +1,2 @@
|
|||
[defaults]
|
||||
roles_path = roles
|
|
@ -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 }
|
||||
|
||||
...
|
||||
|
|
Loading…
Reference in a new issue