blob: 2ffdde46a1ab8f9ba315c9462b09b48cc1227b72 (
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
|
#!/sbin/runscript
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
opt="reload"
depend() {
need net
}
start() {
ebegin "Starting Cherokee Web Server"
start-stop-daemon --start -b \
--exec /usr/sbin/cherokee
eend $?
}
stop() {
ebegin "Stopping Cherokee Web Server"
start-stop-daemon --stop \
--exec /usr/sbin/cherokee
eend $?
}
reload() {
ebegin "Restarting Cherokee Web Server and closing all open connections"
start-stop-daemon --stop \
--signal USR1
eend $?
}
|