openrc/init.d/nscd.in
Mike Frysinger d0bc4f20ad drop useless "All rights reserved" notice
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2011-06-29 19:46:31 -04:00

23 lines
408 B
Plaintext

#!@PREFIX@/sbin/runscript
# Copyright (c) 2007-2008 Roy Marples <roy@marples.name>
# Released under the 2-clause BSD license.
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 $?
}