tags:

views:

17

answers:

0

Hello!

How do I specify dependencies between init scripts on CentOS?

E.g. I need that when service "tomcat" is started it first start service "soffice".

On Gentoo we can do:

depend() {
  need soffice
}

But what about CentOS?

Thanks in advance!