mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-01-19 14:13:34 +01:00
Added --root argument to run.sh to bypass the root-check, fix for #1324
This commit is contained in:
parent
6e7b694243
commit
6a27a54727
1 changed files with 10 additions and 2 deletions
12
bin/run.sh
12
bin/run.sh
|
@ -8,10 +8,18 @@ if [ -d "../bin" ]; then
|
||||||
cd "../"
|
cd "../"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
ignoreRoot=0
|
||||||
|
for ARG in $*
|
||||||
|
do
|
||||||
|
if [ $ARG == '--root' ]; then
|
||||||
|
ignoreRoot=1
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
#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 ] && [ $ignoreRoot -eq 0 ]; then
|
||||||
echo "You shouldn't start Etherpad-Lite as root!"
|
echo "You shouldn't start Etherpad-Lite as root!"
|
||||||
echo "Please type 'Etherpad Lite rocks my socks' if you still want to start it as root"
|
echo "Please type 'Etherpad Lite rocks my socks' or supply the '--root' argument if you still want to start it as root"
|
||||||
read rocks
|
read rocks
|
||||||
if [ ! $rocks = "Etherpad Lite rocks my socks" ]
|
if [ ! $rocks = "Etherpad Lite rocks my socks" ]
|
||||||
then
|
then
|
||||||
|
|
Loading…
Reference in a new issue