summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'sys-fs/lufs/files/lufs-0.9.3-init')
-rw-r--r--sys-fs/lufs/files/lufs-0.9.3-init27
1 files changed, 0 insertions, 27 deletions
diff --git a/sys-fs/lufs/files/lufs-0.9.3-init b/sys-fs/lufs/files/lufs-0.9.3-init
deleted file mode 100644
index 011ae995693f..000000000000
--- a/sys-fs/lufs/files/lufs-0.9.3-init
+++ /dev/null
@@ -1,27 +0,0 @@
-#!/sbin/runscript
-
-# lufsd
-#
-# description: LUFS Userspace Daemon
-#
-# processname: lufs
-# chkconfig: - 91 91
-#
-# lufsd is started by the lufs user, and logs are kept in its homedir.
-#
-
-depend () {
- need localmount
-}
-
-start () {
- ebegin "Starting lufsd"
- su - lufs -c "lufsd -d 2>~/lufsd.err >~/lufsd.log"
- eend $? "Error starting lufsd"
-}
-
-stop () {
- ebegin "Stopping lufsd"
- pkill lufsd
- eend $? "Error stopping lufsd"
-}