aboutsummaryrefslogtreecommitdiffstats
path: root/testing/openvcp/openvcp.initd
diff options
context:
space:
mode:
Diffstat (limited to 'testing/openvcp/openvcp.initd')
-rw-r--r--testing/openvcp/openvcp.initd20
1 files changed, 0 insertions, 20 deletions
diff --git a/testing/openvcp/openvcp.initd b/testing/openvcp/openvcp.initd
deleted file mode 100644
index 609dac6128..0000000000
--- a/testing/openvcp/openvcp.initd
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/sbin/runscript
-
-depend () {
- use net
- after firewall
-}
-
-start() {
- ebegin "OpenVCP Starting"
- start-stop-daemon --start --quiet --background --exec /bin/openvcpd || return 1
- eend $?
-}
-
-stop() {
- ebegin "OpenVCP Stopping"
- kpid=`cat /var/run/openvcpd.pid`
- kill -kill `expr $kpid - 1`
- start-stop-daemon --stop --quiet --retry=TERM/30/KILL/5 --pidfile /var/run/openvcpd.pid
- eend $?
-}