summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'coda/net-fs/coda/files/venus')
-rw-r--r--coda/net-fs/coda/files/venus29
1 files changed, 0 insertions, 29 deletions
diff --git a/coda/net-fs/coda/files/venus b/coda/net-fs/coda/files/venus
deleted file mode 100644
index 4b58c7d..0000000
--- a/coda/net-fs/coda/files/venus
+++ /dev/null
@@ -1,29 +0,0 @@
-#!/sbin/runscript
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-depend() {
- need net
- after codasrv domainname
-}
-
-start() {
- ebegin "Starting ${SVCNAME}"
- start-stop-daemon --start --background \
- --pidfile /var/lib/coda/venus.cache/pid --make-pidfile \
- --exec /usr/sbin/venus
- eend $?
-}
-
-stop() {
- ebegin "Stopping ${SVCNAME}"
- start-stop-daemon --stop \
- --pidfile /var/lib/coda/venus.cache/pid \
- --name venus
- eend $?
-
- ebegin "Unmounting /mnt/coda"
- umount -l /mnt/coda
- eend $?
-}