Make some fixes to the linux/unix start scripts.

This commit is contained in:
Griatch 2016-12-09 20:23:35 +01:00
parent bffc8b04d8
commit f2fda4b1bd
2 changed files with 22 additions and 5 deletions

View file

@ -1,3 +1,4 @@
#!/bin/bash
#
# Evennia init.d Screen launcher script (Linux)
#
@ -33,4 +34,14 @@ SCRIPTPATH="/home/muddev/mud/mygame/server/evennia-screen.sh"
USER="muddev"
#------------------------------------------------------------
su - "$USER" -c "$SCRIPTPATH $1"
case $1 in
start | stop | reload | restart)
# run the start script and forward the argument to it
su - "$USER" -c "$SCRIPTPATH $1"
;;
*)
echo "Usage: evennia {start|stop|restart|reload}"
exit 1
;;
esac
exit 0