mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-01-06 02:17:34 -08:00
Closes: https://bugs.gentoo.org/712806 Package-Manager: Portage-2.3.89, Repoman-2.3.20 Signed-off-by: Matthew Thode <prometheanfire@gentoo.org>
29 lines
513 B
Plaintext
29 lines
513 B
Plaintext
#!/sbin/openrc-run
|
|
# Copyright 1999-2020 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
command=/usr/sbin/nslcd
|
|
pidfile=/run/nslcd/nslcd.pid
|
|
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_pre() {
|
|
checkpath -q -d /run/nslcd -o nslcd:nslcd
|
|
checkconfig
|
|
return $?
|
|
}
|