package keepalive; $HOME_DIR = "/root/bin/keepalive"; ################################################################################ # This should point to the absolute path to your keepalive installation. ################################################################################ $DAEMON_DIR = "$HOME_DIR/keepalive.d/"; ################################################################################ # This is the sleep interval for the daemon. The default is that it # checks the processes every five minutes. ################################################################################ $INTERVAL = 300; # Sleep interval in seconds. Default is 5 minutes. ################################################################################ # This is the directory for the log file to be created if you have debugging # turned on. ################################################################################ $LOG_DIR = "$HOME_DIR/logs"; ################################################################################ # Set this to the full path to your hostname executable. This will allow # the system to properly identify itself when sending out notifications as # well as within the log files. ################################################################################ $HOSTNAME = "/usr/bin/hostname"; ################################################################################ # Our version number. ################################################################################ $VERSION = "1.1"; 1 ;