openrc/init.d.FreeBSD/nscd
2008-01-11 11:45:59 +00:00

23 lines
362 B
Plaintext

#!/sbin/runscript
# Copyright 2007-2008 Roy Marples
# All rights reserved
command=/usr/sbin/nscd
command_args="${nscd_args}"
pidfile=/var/run/nscd.pid
name="Name Service Cache Daemon"
extra_started_commands="flush"
depend() {
need localmount
use net dns ldap ypbind
after bootmisc
}
flush() {
ebegin "Flushing ${name}"
nscd -I all >/dev/null
eend $?
}