Viitor_openldap/etc/init/openldap.conf
kueller 48ed158851 Probleme beim Shutdown -> stop on ...S... wird nicht korrekt erkannt und
blockt den stop...



git-svn-id: svn://svn.compuextreme.de/Viitor/V962/Viitor_openldap@5717 504e572c-2e33-0410-9681-be2bf7408885
2010-06-23 10:16:49 +00:00

17 lines
354 B
Plaintext

description "Startup ldap daemon"
author "Harald Kueller <harald.kueller@compuextreme.de>"
version 1.0
emits none special
start on (runlevel [2345] and (started rpc))
stop on runlevel [016]
console output
script
source /etc/init/functions
if [ -f /etc/openldap/slapd.conf ]; then
/usr/sbin/slapd -f /etc/openldap/slapd.conf -d 0
fi
end script