openrc/init.d/nscd.in

23 lines
408 B
Plaintext
Raw Normal View History

#!@PREFIX@/sbin/runscript
2009-05-01 15:11:40 +01:00
# Copyright (c) 2007-2008 Roy Marples <roy@marples.name>
# Released under the 2-clause BSD license.
2007-12-05 16:41:54 +00:00
command=/usr/sbin/nscd
2009-04-27 07:51:18 +00:00
command_args=$nscd_args
2007-12-05 16:41:54 +00:00
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() {
2009-04-27 07:51:18 +00:00
ebegin "Flushing $name"
2007-12-05 16:41:54 +00:00
nscd -I all >/dev/null
eend $?
}