From b2653d82830b90512206d5ef7e2973af18e2400d Mon Sep 17 00:00:00 2001 From: neodarz Date: Wed, 2 Aug 2017 01:13:11 +0200 Subject: initial commit --- new_kresus.sh | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100755 new_kresus.sh (limited to 'new_kresus.sh') diff --git a/new_kresus.sh b/new_kresus.sh new file mode 100755 index 0000000..90d281c --- /dev/null +++ b/new_kresus.sh @@ -0,0 +1,19 @@ +usage () { + echo "You must set a $1 !" + echo "Usage:" + echo " new_kresus.sh " + exit 0 +} + +if [ -z $1 ]; then + usage "USER" +elif [ -z $2 ]; then + usage "PASSWORD" +fi + + +USER=$1 +PASS=$2 +git clone https://framagit.org/bnjbvr/kresus.git $USER.kresus.neodarz.net +cd $USER.kresus.neodarz.net; npm install; npm install leveldown@1.5.0; ./scripts/build.sh +htpasswd -Bb -c .htpasswd $USER $PASS -- cgit v1.2.1