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