blob: 40b8d472d50521c22256de94036b15aaf17904f6 (
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
|
#!/sbin/runscript
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/sys-apps/noflushd/files/noflushd.rc6,v 1.3 2001/12/23 23:25:19 azarah Exp $
# NB: Config is in /etc/conf.d/noflushd
depend() {
need localmount
}
checkconfig() {
if [ -z "$NOFLUSHD_OPTS" ] ; then
eerror "You need to setup your NOFLUSHD_OPTS first"
eerror "Check that you've adjusted /etc/conf.d/noflushd for your needs"
return 1
fi
}
start() {
checkconfig || return 1
ebegin "Starting noflushd"
start-stop-daemon --start --quiet --exec /usr/sbin/noflushd -- $NOFLUSHD_OPTS
eend $?
}
stop() {
ebegin "Stopping noflushd"
start-stop-daemon --stop --quiet --pidfile /var/run/noflushd.pid
eend $?
}
|