diff options
-rw-r--r-- | punani/db/punani | 2 | ||||
-rwxr-xr-x | retiolum/bin/create-host-tar | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/punani/db/punani b/punani/db/punani index ad477dab..e5d1f383 100644 --- a/punani/db/punani +++ b/punani/db/punani @@ -43,7 +43,7 @@ }, "tinc" : { "apt-get" : "tinc", - "yaourt" : "tinc" + "pacman" : "tinc" }, "python-notify" : { "pacman" : "python-notify", diff --git a/retiolum/bin/create-host-tar b/retiolum/bin/create-host-tar index 305f174c..9def7cec 100755 --- a/retiolum/bin/create-host-tar +++ b/retiolum/bin/create-host-tar @@ -3,6 +3,7 @@ set -xeuf WEBDIR=${WEBDIR:-/srv/http/pub/retiolum} HOSTFILE=$WEBDIR/hosts.tar.gz cd $(dirname $(readlink -f $0)) +git pull origin master || logger "cannot pull painload" #rm $HOSTFILE tar czf $HOSTFILE -C ../hosts . chmod a+rx $HOSTFILE |