aports/testing/libc6/nscd.initd
William Pitcock 5d02c08eee testing/libc6: new aport. (presently disabled)
needs some work (mainly segfaulting on installing the package due to some bug)
2011-07-30 19:12:59 -05:00

19 lines
375 B
Plaintext

#!/sbin/runscript
DAEMON=/usr/sbin/nscd
start() {
ebegin "Starting nscd"
# remove stale files
rm -f /var/db/nscd/* /var/run/nscd/* 2>/dev/null
start-stop-daemon --start --exec $DAEMON
eend $?
}
stop () {
ebegin "Stopping nscd"
start-stop-daemon --stop --quiet \
--pidfile=/var/run/nscd/nscd.pid
eend $?
}