diff options
Diffstat (limited to 'sys-auth/nss-ldapd/files/nslcd.rc')
-rwxr-xr-x | sys-auth/nss-ldapd/files/nslcd.rc | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/sys-auth/nss-ldapd/files/nslcd.rc b/sys-auth/nss-ldapd/files/nslcd.rc deleted file mode 100755 index 45895fe61..000000000 --- a/sys-auth/nss-ldapd/files/nslcd.rc +++ /dev/null @@ -1,35 +0,0 @@ -#!/sbin/runscript -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: $ - -depend() { - need net - use dns logger -} - -checkconfig() { - if [ ! -f /etc/nss-ldapd.conf ] ; then - eerror "Please create /etc/nss-ldapd.conf" - eerror "Example config: /usr/share/nss-ldapd/nss-ldapd.conf" - return 1 - fi - return 0 -} - -start() { - checkconfig || return $? - - ebegin "Starting nslcd" - start-stop-daemon --start --exec /usr/sbin/nslcd \ - --pidfile /var/run/nslcd/nslcd.pid - eend $? "Failed to start nslcd" -} - -stop() { - ebegin "Stopping nslcd" - start-stop-daemon --stop \ - --pidfile /var/run/nslcd/nslcd.pid \ - --exec /usr/sbin/nslcd - eend $? "Failed to stop nslcd" -} |