summaryrefslogtreecommitdiff
blob: 67f2665273027aaa201ecc168f69eaf82004aa94 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#!/sbin/runscript
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-auth/nss-pam-ldapd/files/nslcd-init,v 1.2 2013/02/07 18:11:37 prometheanfire Exp $

extra_commands="checkconfig"
cfg="/etc/nslcd.conf"

depend() {
	need net	
	use dns logger
}

checkconfig() {
	if [ ! -f "$cfg" ] ; then
		eerror "Please create $cfg"
		eerror "Example config: /usr/share/nss-ldapd/nslcd.conf"
		return 1
	fi
	return 0
}

start() {
    checkpath -q -d /var/run/nslcd -o nslcd:nslcd
	checkconfig || return $?

	ebegin "Starting nslcd"
	start-stop-daemon --start --pidfile /var/run/nslcd/nslcd.pid \
		--exec /usr/sbin/nslcd
	eend $? "Failed to start nslcd"
}

stop() {
	ebegin "Stopping nslcd"
	start-stop-daemon --stop --pidfile /var/run/nslcd/nslcd.pid
	eend $? "Failed to stop nslcd"
}