summaryrefslogtreecommitdiff
path: root/init.d/nscd.in
blob: 41e42ae7ab9846ef300a398803ff28f6f050ad95 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!@SBINDIR@/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 $?
}