Silence python interpreter warnings
Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
parent
8a6a1d81c1
commit
5886f505f1
4 changed files with 8 additions and 3 deletions
2
Makefile
2
Makefile
|
@ -1,3 +1,5 @@
|
|||
export ANSIBLE_CONFIG := base/usr/share/luzifer/base-setup/ansible.cfg
|
||||
|
||||
default:
|
||||
|
||||
apply-playbook:
|
||||
|
|
2
PKGBUILD
2
PKGBUILD
|
@ -7,7 +7,7 @@ pkgname=(
|
|||
luzifer-gui
|
||||
luzifer-lenovo-gui
|
||||
)
|
||||
pkgver=0.13.1
|
||||
pkgver=0.13.2
|
||||
pkgrel=1
|
||||
pkgdesc='System configuration for @luzifer systems'
|
||||
arch=(any)
|
||||
|
|
|
@ -1,2 +1,3 @@
|
|||
[defaults]
|
||||
interpreter_python = auto_silent
|
||||
roles_path = roles
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
post_install() {
|
||||
# Apply base-setup playbook
|
||||
ansible-playbook \
|
||||
env ANSIBLE_CONFIG=usr/share/luzifer/base-setup/ansible.cfg -- \
|
||||
ansible-playbook \
|
||||
--diff \
|
||||
--extra-vars "pacman_action=install" \
|
||||
--inventory usr/share/luzifer/base-setup/inventory \
|
||||
|
@ -9,7 +10,8 @@ post_install() {
|
|||
|
||||
post_upgrade() {
|
||||
# Apply base-setup playbook
|
||||
ansible-playbook \
|
||||
env ANSIBLE_CONFIG=usr/share/luzifer/base-setup/ansible.cfg -- \
|
||||
ansible-playbook \
|
||||
--diff \
|
||||
--extra-vars "pacman_action=upgrade" \
|
||||
--inventory usr/share/luzifer/base-setup/inventory \
|
||||
|
|
Loading…
Reference in a new issue