moved to 'monitorix.cgi' default initialization of some configuration options

This commit is contained in:
Jordi Sanfeliu 2016-01-25 18:18:21 +01:00
parent 7f5e9ededd
commit d63494dc16
1 changed files with 5 additions and 1 deletions

View File

@ -622,7 +622,7 @@ if(lc($config{httpd_builtin}->{enabled}) eq "y") {
# make sure that some options are correctly defined
if(!$config{global_zoom}) {
logger("WARNING: the 'global_zoom' option is not valid or doesn't exist. Please consider upgrading your configuration file.");
$config{global_zoom} = 1;
# it's set in 'monitorix.cgi'
}
if(!$config{max_historic_years}) {
logger("WARNING: the 'max_historic_years' option doesn't exist. Please consider upgrading your configuration file.");
@ -632,6 +632,10 @@ if($config{max_historic_years} > 5) {
logger("WARNING: the 'max_historic_years' option exceeds the maximum years permitted (5).");
exit(0);
}
if(!$config{image_format}) {
logger("WARNING: the 'image_format' option is not valid or doesn't exist. Please consider upgrading your configuration file.");
# it's set in 'monitorix.cgi'
}
setpriority(0, 0, $config{priority} || 0);