From 7b5d8b60f251ec48089af5258635294784ca309d Mon Sep 17 00:00:00 2001 From: Ben Peddell Date: Thu, 24 Sep 2015 08:47:30 +1000 Subject: [PATCH] Add run command to arkmanager --- tools/arkmanager | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tools/arkmanager b/tools/arkmanager index 895e8f3..82d4100 100755 --- a/tools/arkmanager +++ b/tools/arkmanager @@ -1156,6 +1156,9 @@ checkConfig while true; do case "$1" in + run) + doRun + ;; start) if [ "$2" == "--all" ]; then doStartAll @@ -1248,6 +1251,7 @@ while true; do echo "installmod Installs a mod from the Steam workshop" echo "restart Stops the server and then starts it" echo "restart --all Restarts all servers specified in configfile_xxxxx" + echo "run Runs the server without daemonizing" echo "start Starts the server" echo "start --all Starts all servers specified in configfile_xxxxx" echo "stop Stops the server"