From b2653d82830b90512206d5ef7e2973af18e2400d Mon Sep 17 00:00:00 2001 From: neodarz Date: Wed, 2 Aug 2017 01:13:11 +0200 Subject: initial commit --- install.sh | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100755 install.sh (limited to 'install.sh') diff --git a/install.sh b/install.sh new file mode 100755 index 0000000..fc032a8 --- /dev/null +++ b/install.sh @@ -0,0 +1,16 @@ +usage () { + echo "You must set a $1 !" + echo "Usage:" + echo " install.sh " + exit 0 +} + +if [ -z $1 ]; then + usage "USER" +elif [ -z $2 ]; then + usage "PASSWORD" +fi + +./new_kresus.sh $1 $2 +./create_service.sh $1 +sudo ./create_apache_conf.sh $1 -- cgit v1.2.1