Last active
August 29, 2015 13:57
-
-
Save darbio/9446440 to your computer and use it in GitHub Desktop.
Taken from http://yojimbo87.github.io/2010/03/14/mono-startup-script.html for Debian
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| ### BEGIN INIT INFO | |
| # Provides: monoserve.sh | |
| # Required-Start: $local_fs $syslog $remote_fs | |
| # Required-Stop: $local_fs $syslog $remote_fs | |
| # Default-Start: 2 3 4 5 | |
| # Default-Stop: 0 1 6 | |
| # Short-Description: Start fastcgi mono server with hosts | |
| ### END INIT INFO | |
| PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin | |
| DAEMON=/usr/local/bin/mono | |
| NAME=monoserver | |
| DESC=monoserver | |
| MONOSERVER=$(which fastcgi-mono-server4) | |
| MONOSERVER_PID=$(ps auxf | grep fastcgi-mono-server4.exe | grep -v grep | awk '{print $2}') | |
| case "$1" in | |
| start) | |
| if [ -z "${MONOSERVER_PID}" ]; then | |
| echo "starting mono server" | |
| start-stop-daemon -S --exec ${MONOSERVER} /applications=/:/var/www/default /socket=tcp:127.0.0.1:9000 /logfile=/var/log/mono/fastcgi.log /printlog=True & | |
| echo "mono server started" | |
| else | |
| echo ${WEBAPPS} | |
| echo "mono server is running" | |
| fi | |
| ;; | |
| stop) | |
| if [ -n "${MONOSERVER_PID}" ]; then | |
| start-stop-daemon -K ${MONOSERVER} | |
| echo "mono server stopped" | |
| else | |
| echo "mono server is not running" | |
| fi | |
| ;; | |
| esac | |
| exit 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment