Merge branch '1601-WUX_bloquea_el_inicio' into 'develop'
fixed error server WUX See merge request artica/pandorafms!1146
This commit is contained in:
commit
2ef8a4905f
|
@ -577,6 +577,9 @@ wuxserver 0
|
|||
# Port of the Selenium Grid Server.
|
||||
#wux_port 4444
|
||||
|
||||
# Maximum timeout to connect to a target web site, also for communications with a Selenium Grid server.
|
||||
#wux_webagent_timeout 15
|
||||
|
||||
# Enable (1) or disable (0) the Pandora FMS Syslog Server (PANDORA FMS ENTERPRISE ONLY).
|
||||
syslogserver 1
|
||||
|
||||
|
|
|
@ -453,6 +453,7 @@ sub pandora_load_config {
|
|||
$pa_config->{"wux_host"} = undef; # 7.0
|
||||
$pa_config->{"wux_port"} = 4444; # 7.0
|
||||
$pa_config->{"wux_browser"} = "*firefox"; # 7.0
|
||||
$pa_config->{"wux_webagent_timeout"} = 15; # 7.0
|
||||
|
||||
# Syslog Server
|
||||
$pa_config->{"syslogserver"} = 1; # 7.0.716
|
||||
|
@ -1068,6 +1069,9 @@ sub pandora_load_config {
|
|||
elsif ($parametro =~ m/^wux_browser\s+(.*)/i) {
|
||||
$pa_config->{'wux_browser'}= clean_blank($1);
|
||||
}
|
||||
elsif ($parametro =~ m/^wux_webagent_timeout\s+([0-9]*)/i) {
|
||||
$pa_config->{'wux_webagent_timeout'}= clean_blank($1);
|
||||
}
|
||||
elsif ($parametro =~ m/^syslogserver\s+([0-1])/i) {
|
||||
$pa_config->{'syslogserver'}= clean_blank($1);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue