blob: 06e734f1af0692463cd282528a1dcdbd3555b8b8 (
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
|
#!/sbin/runscript
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
depend() {
after vcd
}
start() {
ebegin "Starting ${SVCNAME}"
if [[ -f "/var/run/${SVCNAME}.pid" ]] ; then
rm -f "/var/run/${SVCNAME}.pid"
fi
start-stop-daemon \
--start \
--pidfile "/var/run/${SVCNAME}.pid" \
--exec /usr/sbin/vstatd
eend $?
}
stop() {
ebegin "Stopping ${SVCNAME}"
start-stop-daemon \
--stop \
--pidfile "/var/run/${SVCNAME}.pid" \
--exec /usr/sbin/vstatd
eend $?
}
|