public inbox for gentoo-server@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-server] openldap init script vs slapd daemon
@ 2010-10-11 23:18 tangonights
  2010-10-12  6:59 ` Denis Bondar
  0 siblings, 1 reply; 3+ messages in thread
From: tangonights @ 2010-10-11 23:18 UTC (permalink / raw
  To: gentoo-server

Hi everybody!

I just installed a ldap server, but no way to get the init script working, 
while the daemon works perfectly:

# /usr/lib/openldap/slapd -u ldap -g ldap

runs ok, but the script don't:

#!/sbin/runscript
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-nds/openldap/files/slapd-initd2,v 1.1 
2010/04/11 15:14:48 jokey Exp $

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 $?
}

could anybody tell me where the (fatal) differences lie?

thanks,
Stefano 



^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2010-10-12  9:08 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-10-11 23:18 [gentoo-server] openldap init script vs slapd daemon tangonights
2010-10-12  6:59 ` Denis Bondar
2010-10-12  8:25   ` tangonights

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox