openrc/init.d/nscd.in

23 lines
408 B
Plaintext
Raw Normal View History

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