summaryrefslogtreecommitdiff
blob: 1723f880e796d5484ccdc2adce7e4027cdb027fe (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
#!/sbin/runscript

# lufsd
#
# description: LUFS Userspace Daemon
#
# processname: lufs
# chkconfig: - 91 91

depend () {
        need localmount
}

start () {
        echo -n "Starting lufsd... "
        su - lufs -c "lufsd -d 2>~/lufsd.err >~/lufsd.log"
        echo
}

stop () {
        echo -n "Shutting down lufsd... "
        killall lufsd
        echo
}