2009-01-16 Raul Mateos <raulofpandora@gmail.com>

* lib/PandoraFMS/Config.pm: Updated Build and Headers.
	Changed some texts.

git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1352 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
raulmateos 2009-01-16 12:17:39 +00:00
parent 8034be5f6a
commit 7ca7c7e76f
2 changed files with 15 additions and 10 deletions

View File

@ -1,3 +1,8 @@
2009-01-16 Raul Mateos <raulofpandora@gmail.com>
* lib/PandoraFMS/Config.pm: Updated Build and Headers.
Changed some texts.
2009-01-16 Ramon Novoa <rnovoa@artica.es> 2009-01-16 Ramon Novoa <rnovoa@artica.es>
* lib/PandoraFMS/DB.pm: Several fixes. * lib/PandoraFMS/DB.pm: Several fixes.

View File

@ -3,8 +3,8 @@ package PandoraFMS::Config;
# Configuration Package # Configuration Package
# Pandora FMS. the Flexible Monitoring System. http://www.pandorafms.org # Pandora FMS. the Flexible Monitoring System. http://www.pandorafms.org
########################################################################## ##########################################################################
# Copyright (c) 2004-2008 Sancho Lerena, slerena@gmail.com # Copyright (c) 2004-2009 Sancho Lerena, slerena@gmail.com
# Copyright (c) 2005-2008 Artica Soluciones Tecnologicas S.L # Copyright (c) 2005-2009 Artica Soluciones Tecnologicas S.L
# #
# This program is free software; you can redistribute it and/or # This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License # modify it under the terms of the GNU General Public License
@ -39,7 +39,7 @@ our @EXPORT = qw(
# version: Defines actual version of Pandora Server for this module only # version: Defines actual version of Pandora Server for this module only
my $pandora_version = "2.1-dev"; my $pandora_version = "2.1-dev";
my $pandora_build="PS081109"; my $pandora_build="PS090115";
our $VERSION = $pandora_version." ".$pandora_build; our $VERSION = $pandora_version." ".$pandora_build;
# Setup hash # Setup hash
@ -54,12 +54,12 @@ my %pa_config;
sub help_screen { sub help_screen {
printf "\nSyntax: \n\n pandora_server [ options ] < fullpathname to configuration file > \n\n"; printf "\nSyntax: \n\n pandora_server [ options ] < fullpathname to configuration file > \n\n";
printf "Following options are optional : \n"; printf "Following options are optional : \n";
printf " -v : Verbose mode activated, give more information in logfile \n"; printf " -v : Verbose mode activated, write more information in logfile \n";
printf " -d : Debug mode activated, give extensive information in logfile \n"; printf " -d : Debug mode activated, write extensive information in logfile \n";
printf " -D : Daemon mode (runs in backgroup)\n"; printf " -D : Daemon mode (runs in background)\n";
printf " -P <file> : Store PID to file.\n"; printf " -P <file> : Store PID to file.\n";
printf " -q : Quiet startup\n"; printf " -q : Quiet startup\n";
printf " -h : This screen, show a little help screen \n"; printf " -h : This screen. It shows a little help screen \n";
printf " \n"; printf " \n";
exit; exit;
} }
@ -72,13 +72,13 @@ sub help_screen {
sub pandora_init { sub pandora_init {
my $pa_config = $_[0]; my $pa_config = $_[0];
my $init_string = $_[1]; my $init_string = $_[1];
printf "\n$init_string $pandora_version Build $pandora_build Copyright (c) 2004-2008 ArticaST\n"; printf "\n$init_string $pandora_version Build $pandora_build Copyright (c) 2004-2009 ArticaST\n";
printf "This program is OpenSource, licensed under the terms of GPL License version 2.\n"; printf "This program is OpenSource, licensed under the terms of GPL License version 2.\n";
printf "You can download latest versions and documentation at http://www.pandorafms.org \n\n"; printf "You can download latest versions and documentation at http://www.pandorafms.org \n\n";
# Load config file from command line # Load config file from command line
if ($#ARGV == -1 ){ if ($#ARGV == -1 ){
print "I Need at least one parameter: Complete path to Pandora FMS Server configuration file. \n"; print "I need at least one parameter: Complete path to Pandora FMS Server configuration file. \n";
help_screen; help_screen;
exit; exit;
} }
@ -115,7 +115,7 @@ sub pandora_init {
} }
} }
if ($pa_config->{"pandora_path"} eq ""){ if ($pa_config->{"pandora_path"} eq ""){
print " [ERROR] I Need at least one parameter: Complete path to Pandora FMS configuration file. \n"; print " [ERROR] I need at least one parameter: Complete path to Pandora FMS configuration file. \n";
print " For example: ./pandora_server /etc/pandora/pandora_server.conf\n\n"; print " For example: ./pandora_server /etc/pandora/pandora_server.conf\n\n";
exit; exit;
} }