Hi,
I've installed MONyog in a Debian 6.0 machine, and everything is working properly, except that when I reboot the machine, the startup scripts are not working. After a little research, I found that the supplied scripts for use in /etc/init.d are missing the proper LSB headers (http://wiki.debian.org/LSBInitScripts/). So, adding the following to the start of the MONyog init.d script made it work:
#!/bin/bash
#
### BEGIN INIT INFO
# Provides: MONyog
# Required-Start: $network $local_fs $remote_fs
# Required-Stop:
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: Start and stop the MONyog daemon
# Description: Controls the initailiation of the MONyog daemon
# Short-Description: Run /etc/rc.local if it exist
### END INIT INFO
It would be nice if those headers where included in the scripts that come in the tar packages for MONyog.
Thank you,
Roberto Greiner