ich hab das Problem, dass zwei Dienste zu früh starten. Ich nutze insserv. In den init-script steht (Ausschnitte):
/et/init.d/ingraph:
Code: Alles auswählen
# chkconfig: 345 99 01
# description: Startup script for ingraph daemon
# processname: ingraphd
### BEGIN INIT INFO
# Provides: ingraph
# Required-Start: $remote_fs $network mysql
# Required-Stop: $remote_fs $network
# Should-Start: $mysql $postgresql
# Should-Stop: $mysql $postgresql
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: Short description.
# Description: Description.
### END INIT INFO
Code: Alles auswählen
# chkconfig: 345 99 02
# description: Startup script for ingraph-collector daemon
# processname: ingraph-collectord
### BEGIN INIT INFO
# Provides: ingraph-collector
# Required-Start: $remote_fs $network ingraph
# Required-Stop: $remote_fs network
# Should-Start: $ingraph
# Should-Stop: $ingraph
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: Short description.
# Description: Description.
### END INIT INFO
Was mache ich falsch? Jemand eine Idee?