diff options
author | marvin-borner@live.com | 2018-05-12 12:40:51 +0200 |
---|---|---|
committer | marvin-borner@live.com | 2018-05-12 12:40:51 +0200 |
commit | 16014c5bbd25afbb445784c17646607c53cfe56b (patch) | |
tree | 70a2a753d81aa62084a61bf7f584228792608481 /startserver.sh | |
parent | 72ca4fbbdb9ff3a5514ddb1d1a3f6808990ac09d (diff) |
Added server start options
Diffstat (limited to 'startserver.sh')
-rw-r--r-- | startserver.sh | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/startserver.sh b/startserver.sh index d4a1938..b657da1 100644 --- a/startserver.sh +++ b/startserver.sh @@ -1,3 +1,9 @@ #!/usr/bin/env bash cd main/app/sprinkles/core/assets/SiteAssets/php/Chatserver/bin/ -nohup php WebChatServer.php & + +if [ "$1" = "persistent" ] + then + nohup php WebChatServer.php & +else + php WebChatServer.php +fi |