I have 3 different linux processes (daemons). One is the main one which takes care about initialization of the IPC and some other stuff. After the initialization is done one of the remaining processes must start and run until it must be restarted. Which process is started depends on the configuration stored in a XML file. I must be able to restart all of the processes i.e. via /etc/init.d/xxx restart.
How can I start one of the remaining two processes depending on the configuration and also implement the restart so all processes restart at one time?
fork()/exec()the proper program after it's done with initialization and reading the config file? – twalberg Feb 4 at 21:48