2011-01-22 Sancho Lerena <slerena@artica.es>
* lib/PandoraFMS/Config.pm: Updated version, we're on 4.0-dev ! * lib/PandoraFMS/Tools.pm: Detect new embedded agents git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@3764 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
8708292061
commit
fdfc84993c
|
@ -1,3 +1,9 @@
|
|||
2011-01-22 Sancho Lerena <slerena@artica.es>
|
||||
|
||||
* lib/PandoraFMS/Config.pm: Updated version, we're on 4.0-dev !
|
||||
|
||||
* lib/PandoraFMS/Tools.pm: Detect new embedded agents
|
||||
|
||||
2010-01-07 Juan Manuel Ramon <juanmanuel.ramon@artica.es>
|
||||
|
||||
* pandora_server_upgrade: Changed permissions in this file to make it executable by default.
|
||||
|
|
|
@ -41,8 +41,8 @@ our @EXPORT = qw(
|
|||
);
|
||||
|
||||
# version: Defines actual version of Pandora Server for this module only
|
||||
my $pandora_version = "3.2";
|
||||
my $pandora_build = "101227";
|
||||
my $pandora_version = "4.0-dev";
|
||||
my $pandora_build = "110122";
|
||||
our $VERSION = $pandora_version." ".$pandora_build;
|
||||
|
||||
# Setup hash
|
||||
|
|
|
@ -196,6 +196,9 @@ sub pandora_get_os ($) {
|
|||
elsif ($command =~ m/Octopods/i){
|
||||
return 13;
|
||||
}
|
||||
elsif ($command =~ m/embedded/i){
|
||||
return 14;
|
||||
}
|
||||
elsif ($command =~ m/BSD/i){
|
||||
return 4;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue