Merge branch 'develop' of https://github.com/pandorafms/pandorafms into develop

This commit is contained in:
Vanessa Gil 2014-10-02 13:50:39 +02:00
commit 344d69c3ab
2 changed files with 15 additions and 5 deletions

View File

@ -146,14 +146,22 @@ function clippy_start_page_homepage() {
}
function set_clippy_annoying() {
checked = $('input[name=\'clippy_is_annoying\']').is(':checked');
var now = new Date();
var time = now.getTime();
var expireTime = time + 3600000 * 24 * 360 * 20;
now.setTime(expireTime);
checked = $('input[name=\'clippy_is_annoying\']')
.is(':checked');
//intro_homepage.exit();
if (checked) {
document.cookie = 'clippy_is_annoying=1';
document.cookie = 'clippy_is_annoying=1;expires=' +
now.toGMTString() + ';';
}
else {
document.cookie = 'clippy_is_annoying=0';
document.cookie = 'clippy_is_annoying=0;expires=' +
now.toGMTString() + ';';
}
}

View File

@ -37,6 +37,7 @@ if ($OSNAME eq "freebsd") {
'pandora_path' => '/usr/local/etc/pandora/pandora_server.conf',
'icmp_checks' => 1,
'networktimeout' => 2,
'snmp_timeout' => 2,
'recon_timing_template' => 3,
'PID' => '',
'quiet' => 1,
@ -47,6 +48,7 @@ if ($OSNAME eq "freebsd") {
'pandora_path' => '/etc/pandora/pandora_server.conf',
'icmp_checks' => 1,
'networktimeout' => 2,
'snmp_timeout' => 2,
'recon_timing_template' => 3,
'PID' => '',
'quiet' => 1,
@ -181,7 +183,7 @@ sub responds_to_snmp($) {
my ($target) = @_;
foreach my $community (@SNMP_COMMUNITIES) {
`snmpwalk -M/dev/null -r2 -t0.1 -v1 -On -Oe -c $community $target .0 2>/dev/null`;
`snmpwalk -M/dev/null -r2 -t$CONF{'snmp_timeout'} -v1 -On -Oe -c $community $target .0 2>/dev/null`;
if ($? == 0) {
$COMMUNITIES{$target} = $community;
return $community;
@ -198,7 +200,7 @@ sub snmp_get($$$) {
my ($target, $community, $oid) = @_;
my @output;
@output = `snmpwalk -M/dev/null -r2 -t0.1 -v1 -On -Oe -c $community $target $oid 2>/dev/null`;
@output = `snmpwalk -M/dev/null -r2 -t$CONF{'snmp_timeout'} -v1 -On -Oe -c $community $target $oid 2>/dev/null`;
return @output;
}