From c971ce27a09d4aa5e740fda3664c8a8181de3233 Mon Sep 17 00:00:00 2001 From: root Date: Wed, 2 Jan 2013 18:34:41 +0000 Subject: fix adv_graphgen, github_listener --- retiolum/bin/create-host-tar | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) (limited to 'retiolum/bin/create-host-tar') diff --git a/retiolum/bin/create-host-tar b/retiolum/bin/create-host-tar index 9def7cec..48ce26d5 100755 --- a/retiolum/bin/create-host-tar +++ b/retiolum/bin/create-host-tar @@ -1,9 +1,15 @@ #!/bin/sh -set -xeuf -WEBDIR=${WEBDIR:-/srv/http/pub/retiolum} +set -euf +if [ x"${1:-}" = "x" ];then + echo "usage: $0 DIRECTORY" + exit 1 +fi + +WEBDIR=$1 +HOSTDIR=${HOSTDIR:-../hosts} 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 . +rm -f $HOSTFILE +tar czf $HOSTFILE -C $HOSTDIR . chmod a+rx $HOSTFILE -- cgit v1.2.3