2013-09-17 23:27:52 +02:00
|
|
|
#!/bin/sh
|
2011-05-13 16:52:07 +02:00
|
|
|
|
2011-06-04 16:57:39 +02:00
|
|
|
#Move to the folder where ep-lite is installed
|
2011-08-03 23:08:27 +02:00
|
|
|
cd `dirname $0`
|
2011-06-04 16:57:39 +02:00
|
|
|
|
|
|
|
#Was this script started in the bin folder? if yes move out
|
|
|
|
if [ -d "../bin" ]; then
|
|
|
|
cd "../"
|
|
|
|
fi
|
|
|
|
|
2013-01-06 12:48:32 +01:00
|
|
|
ignoreRoot=0
|
|
|
|
for ARG in $*
|
|
|
|
do
|
2013-09-17 23:27:52 +02:00
|
|
|
if [ "$ARG" = "--root" ]; then
|
2013-01-06 12:48:32 +01:00
|
|
|
ignoreRoot=1
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
2011-06-02 14:43:34 +02:00
|
|
|
#Stop the script if its started as root
|
2013-01-06 12:48:32 +01:00
|
|
|
if [ "$(id -u)" -eq 0 ] && [ $ignoreRoot -eq 0 ]; then
|
2013-08-23 00:32:25 +02:00
|
|
|
echo "You shouldn't start Etherpad as root!"
|
|
|
|
echo "Please type 'Etherpad rocks my socks' or supply the '--root' argument if you still want to start it as root"
|
2011-08-02 23:28:17 +02:00
|
|
|
read rocks
|
2015-06-22 16:11:29 +02:00
|
|
|
if [ ! "$rocks" == "Etherpad rocks my socks" ]
|
2011-08-02 23:28:17 +02:00
|
|
|
then
|
2011-08-03 23:18:12 +02:00
|
|
|
echo "Your input was incorrect"
|
2011-08-02 23:28:17 +02:00
|
|
|
exit 1
|
|
|
|
fi
|
2011-04-07 15:51:46 +02:00
|
|
|
fi
|
2011-03-26 14:10:41 +01:00
|
|
|
|
2011-07-27 15:37:12 +02:00
|
|
|
#prepare the enviroment
|
2012-02-26 13:31:47 +01:00
|
|
|
bin/installDeps.sh $* || exit 1
|
2011-06-02 14:43:34 +02:00
|
|
|
|
|
|
|
#Move to the node folder and start
|
2014-11-26 16:19:22 +01:00
|
|
|
echo "Started Etherpad..."
|
2013-11-10 17:32:33 +01:00
|
|
|
|
|
|
|
SCRIPTPATH=`pwd -P`
|
2016-05-16 16:58:58 +02:00
|
|
|
exec node "$SCRIPTPATH/node_modules/ep_etherpad-lite/node/server.js" $*
|
2013-11-10 17:32:33 +01:00
|
|
|
|