net-nds/openldap: remove unused init file
authorMichael Mair-Keimberger (asterix) <m.mairkeimberger@gmail.com>
Fri, 27 Jan 2017 15:27:40 +0000 (16:27 +0100)
committerRobin H. Johnson <robbat2@gentoo.org>
Fri, 27 Jan 2017 22:10:16 +0000 (14:10 -0800)
(cherry picked from commit d25ef0203245831250003ab14b6465b621e58ab0)
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
Fixes: https://github.com/gentoo/gentoo/pull/3678

net-nds/openldap/files/slapd-initd2 [deleted file]

diff --git a/net-nds/openldap/files/slapd-initd2 b/net-nds/openldap/files/slapd-initd2
deleted file mode 100644 (file)
index 8016677..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2004 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-depend() {
-       need net
-       before dbus hald avahi-daemon
-       provide ldap
-}
-
-start() {
-       ebegin "Starting ldap-server"
-       eval start-stop-daemon --start --pidfile /var/run/openldap/slapd.pid --exec /usr/lib/openldap/slapd -- -u ldap -g ldap "${OPTS}"
-       eend $?
-}
-
-stop() {
-       ebegin "Stopping ldap-server"
-       start-stop-daemon --stop --signal 2 --quiet --pidfile /var/run/openldap/slapd.pid 
-       eend $?
-}