2013-09-17 23:27:52 +02:00
|
|
|
#!/bin/sh
|
2011-05-13 16:52:07 +02:00
|
|
|
|
2020-06-01 22:02:44 +02:00
|
|
|
pecho() { printf %s\\n "$*"; }
|
|
|
|
log() { pecho "$@"; }
|
|
|
|
error() { log "ERROR: $@" >&2; }
|
|
|
|
fatal() { error "$@"; exit 1; }
|
2011-06-04 16:57:39 +02:00
|
|
|
|
2020-06-01 22:02:44 +02:00
|
|
|
# Move to the folder where ep-lite is installed
|
|
|
|
cd "$(dirname "$0")"/..
|
2011-06-04 16:57:39 +02:00
|
|
|
|
2013-01-06 12:48:32 +01:00
|
|
|
ignoreRoot=0
|
2020-06-01 22:02:44 +02:00
|
|
|
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
|
|
|
|
|
2020-06-01 22:02:44 +02:00
|
|
|
# Stop the script if it's started as root
|
|
|
|
if [ "$(id -u)" -eq 0 ] && [ "$ignoreRoot" -eq 0 ]; then
|
|
|
|
cat <<EOF >&2
|
|
|
|
You shouldn't start Etherpad as root!
|
|
|
|
Please type 'Etherpad rocks my socks' (or restart with the '--root'
|
|
|
|
argument) if you still want to start it as root:
|
|
|
|
EOF
|
|
|
|
printf "> " >&2
|
2017-09-14 13:33:27 +02:00
|
|
|
read rocks
|
2020-06-01 22:02:44 +02:00
|
|
|
[ "$rocks" = "Etherpad rocks my socks" ] || fatal "Your input was incorrect"
|
2011-04-07 15:51:46 +02:00
|
|
|
fi
|
2011-03-26 14:10:41 +01:00
|
|
|
|
2020-06-01 22:02:44 +02:00
|
|
|
# Prepare the environment
|
2019-12-01 01:52:32 +01:00
|
|
|
bin/installDeps.sh "$@" || exit 1
|
2011-06-02 14:43:34 +02:00
|
|
|
|
2020-06-01 22:02:44 +02:00
|
|
|
# Move to the node folder and start
|
|
|
|
log "Starting Etherpad..."
|
2013-11-10 17:32:33 +01:00
|
|
|
|
2020-03-29 00:53:17 +01:00
|
|
|
SCRIPTPATH=$(pwd -P)
|
2019-12-01 01:52:32 +01:00
|
|
|
exec node "$SCRIPTPATH/node_modules/ep_etherpad-lite/node/server.js" "$@"
|