/etc/default/mon is in mon 1.2.0-9.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | # Defaults for mon initscript
# Created by Dario Minnucci <midget@debian.org>
# Master system-wide mon switch.
# The initscript will not run if ENABLED is set
# to values other than: "yes", "true" or "1".
ENABLED="yes"
# Configuration file
CONFIGFILE="/etc/mon/mon.cf"
# Auth file
#AUTHFILE="/etc/mon/auth.cf"
# Base configuration directory
CFBASEDIR="/etc/mon"
# Alerts directory
ALERTSDIR="/usr/lib/mon/alert.d"
# Monitors directory
MONITORSDIR="/usr/lib/mon/mon.d"
# State directory
STATEDIR="/var/lib/mon"
# Logging directory
LOGDIR="/var/log/mon"
# Deamon options
DAEMON_OPTS="-B ${CFBASEDIR} -a ${ALERTSDIR} -s ${MONITORSDIR} -D ${STATEDIR} -L ${LOGDIR} -f -c ${CONFIGFILE}"
|