2008-03-03 02:44:01 +05:30
|
|
|
#!@PREFIX@/sbin/runscript
|
2008-01-11 21:01:10 +05:30
|
|
|
# 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 $?
|
|
|
|
}
|