Allow starting as root after input a silly prompt
This commit is contained in:
parent
fe5bcabddf
commit
051589ed47
11
bin/run.sh
11
bin/run.sh
|
@ -11,9 +11,14 @@ fi
|
||||||
|
|
||||||
#Stop the script if its started as root
|
#Stop the script if its started as root
|
||||||
if [ "$(id -u)" -eq 0 ]; then
|
if [ "$(id -u)" -eq 0 ]; then
|
||||||
echo "You shouldn't start Etherpad-Lite as root!" 1>&2
|
echo "You shouldn't start Etherpad-Lite as root!"
|
||||||
echo "Use authbind if you want to use a port lower than 1024 -> http://en.wikipedia.org/wiki/Authbind" 1>&2
|
echo "Please type 'Etherpad Lite rocks my socks' if you still want to start it as root"
|
||||||
exit 1
|
read rocks
|
||||||
|
if [ ! $rocks = "Etherpad Lite rocks my socks" ]
|
||||||
|
then
|
||||||
|
echo "You're input was wrong"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
#prepare the enviroment
|
#prepare the enviroment
|
||||||
|
|
Loading…
Reference in New Issue