Add more default settings to config files

This commit is contained in:
Patrick Van der Veken 2020-04-13 20:28:28 +02:00
parent be2c4fab8e
commit d14393ca85
8 changed files with 36 additions and 17 deletions

View File

@ -13,9 +13,11 @@ log_healthy="no"
# full path to the location of mksysb images, the tool expects sub-directories
# per host underneath this location
# [default: /export/images]
backup_path=/export/images
# name of the file containing the mksysb output
# [default: mksysb.log]
mksysb_log=mksysb.log
# maximum days before backup gets flagged as 'too old'

View File

@ -32,7 +32,7 @@ max_space_usage=90
# defining a threshold of 0 (zero), then the check will for this give filesystem
# will be skipped (this allows for exclusion of filesystems)
# Format:
# fs:<mount_point>:[<max_inode_usage_%>]:[<max_space_usage_%]
# fs:<mount_point>:[<max_inodes_usage_%>]:[<max_space_usage_%]
# Examples:
# check myfs1 with a custom inodes + space usage threshold
#fs:myfs1:70:95

View File

@ -32,7 +32,7 @@ max_space_usage=90
# defining a threshold of 0 (zero), then the check will for this give filesystem
# will be skipped (this allows for exclusion of filesystems)
# Format:
# fs:<mount_point>:[<max_inode_usage_%>]:[<max_space_usage_%]
# fs:<mount_point>:[<max_inodes_usage_%>]:[<max_space_usage_%]
# Examples:
# check myfs1 with a custom inodes + space usage threshold
#fs:myfs1:70:95

View File

@ -12,18 +12,23 @@
log_healthy="no"
# location of 'hpacucli' tool
# [default: /usr/sbin/hpacucli]
hpacucli_bin="/usr/sbin/hpacucli"
# controller all show status (0=off, 1=on) [default: 1]
# controller all show status (0=off, 1=on)
# [default: 1]
do_acu_controller=1
# controller slot=X enclosure all show (0=off, 1=on) [default: 1]
# controller slot=X enclosure all show (0=off, 1=on)
# [default: 1]
do_acu_enclosure=1
# controller slot=X physicaldrive all show status (0=off, 1=on) [default: 1]
# controller slot=X physicaldrive all show status (0=off, 1=on)
# [default: 1]
do_acu_physical=1
# controller slot=X logicaldrive all show status (0=off, 1=on) [default: 1]
# controller slot=X logicaldrive all show status (0=off, 1=on)
# [default: 1]
do_acu_logical=1

View File

@ -12,21 +12,27 @@
log_healthy="no"
# location of 'hpasmcli' tool
# [default: /sbin/hpasmcli]
hpasmcli_bin="/sbin/hpasmcli"
# SHOW FANS (0=off, 1=on) [default: 1]
# SHOW FANS (0=off, 1=on)
# [default: 1]
do_asm_fans=1
# SHOW DIMM (0=off, 1=on) [default: 1]
# SHOW DIMM (0=off, 1=on)
# [default: 1]
do_asm_dimm=1
# SHOW POWERSUPPLY (0=off, 1=on) [default: 1]
# SHOW POWERSUPPLY (0=off, 1=on)
# [default: 1]
do_asm_powersupply=1
# SHOW SERVER (0=off, 1=on) [default: 1]
# SHOW SERVER (0=off, 1=on)
# [default: 1]
do_asm_server=1
# SHOW TEMPERATURE (0=off, 1=on) [default: 1]
# SHOW TEMPERATURE (0=off, 1=on)
# [default: 1]
do_asm_temperature=1

View File

@ -12,6 +12,7 @@
log_healthy="no"
# location of 'hpacucli' tool
# [default: /sbin/hplog]
hplog_bin="/sbin/hplog"
# comma-separated list of severities to search for (case insensitive)

View File

@ -12,18 +12,23 @@
log_healthy="no"
# location of 'hpssacli' tool
# [default: /usr/sbin/hpssacli]
hpssacli_bin="/usr/sbin/hpssacli"
# controller all show status (0=off, 1=on) [default: 1]
# controller all show status (0=off, 1=on)
# [default: 1]
do_ssa_controller=1
# controller slot=X enclosure all show (0=off, 1=on) [default: 1]
# controller slot=X enclosure all show (0=off, 1=on)
# [default: 1]
do_ssa_enclosure=1
# controller slot=X physicaldrive all show status (0=off, 1=on) [default: 1]
# controller slot=X physicaldrive all show status (0=off, 1=on)
# [default: 1]
do_ssa_physical=1
# controller slot=X logicaldrive all show status (0=off, 1=on) [default: 1]
# controller slot=X logicaldrive all show status (0=off, 1=on)
# [default: 1]
do_ssa_logical=1
#******************************************************************************

View File

@ -14,12 +14,12 @@ log_healthy="no"
# specify which type of process check to use
# Format: <auto|pgrep|sysv|systemd>. NULL value equals to "auto"
# [default: auto]
# Compatibility: >=2019-11-01
# [release >20191101]
check_type="auto"
# specify custom path to the httpd binary
# [default: null]
# Compatibility: >=2019-11-01
# [release >20191101]
httpd_bin=""