summaryrefslogtreecommitdiffstats
path: root/retiolum/scripts/github_listener/handle_request
blob: 5b42524a079109246291f932ccfbd3826d224091 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/sh
# Possible Shell Vars
#   WEBDIR 
#   HOSTFOLDER
set -euf
if [ "x${2:-}" = x ];then
	echo "usage: $0 HOSTDIRECTORY WEBDIRECTORY"
	exit 1
fi
export HOSTDIR=${1:-../../hosts}
WEBDIR=${2:-/var/www/euer.krebsco.de/retiolum/}
echo "sorry for keeping you waiting, please be patient"

cd $(dirname $(readlink -f $0))

cd "$HOSTDIR"
git pull origin master  >&2
echo "First step done"
cd - >&2
../../bin/create-supernode-tar $WEBDIR
echo "almost done..."
../../bin/create-host-tar $WEBDIR
echo "Thank you for your patience!"