summaryrefslogtreecommitdiff
path: root/init.d/nscd.in
blob: 02a519545b634e8eba11151e93874d1a86e5cd6d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!@PREFIX@/sbin/runscript
# Copyright (c) 2007-2008 Roy Marples <roy@marples.name>
# All rights reserved. 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 $?
}