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:
|
default:
|
||||||
|
|
||||||
apply-playbook:
|
apply-playbook:
|
||||||
|
|
2
PKGBUILD
2
PKGBUILD
|
@ -7,7 +7,7 @@ pkgname=(
|
||||||
luzifer-gui
|
luzifer-gui
|
||||||
luzifer-lenovo-gui
|
luzifer-lenovo-gui
|
||||||
)
|
)
|
||||||
pkgver=0.13.1
|
pkgver=0.13.2
|
||||||
pkgrel=1
|
pkgrel=1
|
||||||
pkgdesc='System configuration for @luzifer systems'
|
pkgdesc='System configuration for @luzifer systems'
|
||||||
arch=(any)
|
arch=(any)
|
||||||
|
|
|
@ -1,2 +1,3 @@
|
||||||
[defaults]
|
[defaults]
|
||||||
|
interpreter_python = auto_silent
|
||||||
roles_path = roles
|
roles_path = roles
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
post_install() {
|
post_install() {
|
||||||
# Apply base-setup playbook
|
# Apply base-setup playbook
|
||||||
|
env ANSIBLE_CONFIG=usr/share/luzifer/base-setup/ansible.cfg -- \
|
||||||
ansible-playbook \
|
ansible-playbook \
|
||||||
--diff \
|
--diff \
|
||||||
--extra-vars "pacman_action=install" \
|
--extra-vars "pacman_action=install" \
|
||||||
|
@ -9,6 +10,7 @@ post_install() {
|
||||||
|
|
||||||
post_upgrade() {
|
post_upgrade() {
|
||||||
# Apply base-setup playbook
|
# Apply base-setup playbook
|
||||||
|
env ANSIBLE_CONFIG=usr/share/luzifer/base-setup/ansible.cfg -- \
|
||||||
ansible-playbook \
|
ansible-playbook \
|
||||||
--diff \
|
--diff \
|
||||||
--extra-vars "pacman_action=upgrade" \
|
--extra-vars "pacman_action=upgrade" \
|
||||||
|
|
Loading…
Reference in a new issue