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