openrc/init.d/nscd.in

23 lines
431 B
Plaintext
Raw Normal View History

#!@PREFIX@/sbin/runscript
# Copyright 2007-2008 Roy Marples <roy@marples.name>
# All rights reserved. Released under the 2-clause BSD license.
2007-12-05 22:11:54 +05:30
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 $?
}