blob: 0432bca7d36e2d9df20342a164f10b386832d316 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
#!/sbin/runscript
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id: xsp.initd,v 1.1 2009/01/18 17:44:04 loki_val Exp $
depend() {
need net
after dotnet
}
start() {
ebegin "Starting xsp"
if [ ${MonoServerVersion} -eq 1 ]; then
xsppath=1.0/xsp.exe
elif [ ${MonoServerVersion} -eq 2 ]; then
xsppath=2.0/xsp2.exe
else
eerror "MonoServerVersion was not properly set. Check your config file"
return 1
fi
start-stop-daemon --quiet --start \
--background \
--make-pidfile \
--pidfile /var/run/aspnet/xsp.pid \
--chuid aspnet \
--exec /usr/bin/mono /usr/lib/mono/${xsppath} -- --root ${MonoServerRoot} --port ${MonoServerPort} --nonstop
eend $?
}
stop() {
ebegin "Stopping xsp"
start-stop-daemon -o --quiet --stop \
--pidfile /var/run/aspnet/xsp.pid
eend $?
}
|