Add run command to arkmanager

This commit is contained in:
Ben Peddell 2015-09-24 08:47:30 +10:00
parent 4856d8bbb1
commit 7b5d8b60f2

View File

@ -1156,6 +1156,9 @@ checkConfig
while true; do while true; do
case "$1" in case "$1" in
run)
doRun
;;
start) start)
if [ "$2" == "--all" ]; then if [ "$2" == "--all" ]; then
doStartAll doStartAll
@ -1248,6 +1251,7 @@ while true; do
echo "installmod <modid> Installs a mod from the Steam workshop" echo "installmod <modid> Installs a mod from the Steam workshop"
echo "restart Stops the server and then starts it" echo "restart Stops the server and then starts it"
echo "restart --all Restarts all servers specified in configfile_xxxxx" echo "restart --all Restarts all servers specified in configfile_xxxxx"
echo "run Runs the server without daemonizing"
echo "start Starts the server" echo "start Starts the server"
echo "start --all Starts all servers specified in configfile_xxxxx" echo "start --all Starts all servers specified in configfile_xxxxx"
echo "stop Stops the server" echo "stop Stops the server"