Openacs and daemontools
-----------------------

OpenACS daemon can be controlled using daemontools instead of the init.d script. To do that, follow the next steps: 

1) Change the "StartDaemon" value to "no" on /etc/default/openacs to disable the openacs init.d script.

2) Stop the daemon (/etc/init.d/openacs stop)

3) Link daemontools openacs script ( ln -s /usr/share/openacs/etc/daemontools /etc/service/openacs ).

Now you can control the openacs service using the svc command:

* To start the service: svc -u /etc/service/openacs.
* To stop the service: svc -d /etc/service/openacs.
* To restart the service: svc -t /etc/service/openacs.

For more info, please check the svc command man page.