diff options
Diffstat (limited to '')
-rwxr-xr-x | new_kresus.sh | 19 |
1 files changed, 19 insertions, 0 deletions
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 <user> <password>" + 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 |