mirror of
https://github.com/centreon/centreon-plugins.git
synced 2025-07-25 14:44:43 +02:00
set properties
change headers improve centreon package git-svn-id: http://svn.centreon.com/trunk/plugins-2.x@8026 6bcd3966-0018-0410-8128-fd23d134de7e
This commit is contained in:
parent
331c3a440a
commit
448083ab22
@ -1,5 +1,5 @@
|
|||||||
##########################
|
##########################
|
||||||
# Oreon Plugins Change Log
|
# Centreon Plugins Change Log
|
||||||
##########################
|
##########################
|
||||||
|
|
||||||
1.2.3 - 02/11/2005
|
1.2.3 - 02/11/2005
|
||||||
|
@ -5,8 +5,7 @@
|
|||||||
- Perl in /usr/bin/perl - or just run 'perl script'
|
- Perl in /usr/bin/perl - or just run 'perl script'
|
||||||
- Net::SNMP
|
- Net::SNMP
|
||||||
- Config::IniFiles
|
- Config::IniFiles
|
||||||
- RRDTool installed (RRDs.pm)
|
- centreon perl module (centreon.pm)
|
||||||
- Oreon perl module (oreon.pm)
|
- Centreon configuration file for Centreon perl module (Centreon.conf)
|
||||||
- Oreon configuration file for Oreon perl module (oreon.conf)
|
|
||||||
- file 'utils.pm' in plugin diretory (/usr/local/nagios/libexec)
|
- file 'utils.pm' in plugin diretory (/usr/local/nagios/libexec)
|
||||||
- sed program for installation script
|
- sed program for installation script
|
@ -1,30 +1,45 @@
|
|||||||
###################################################################
|
################################################################################
|
||||||
# Oreon is developped with GPL Licence 2.0
|
# Copyright 2005-2009 MERETHIS
|
||||||
#
|
# Centreon is developped by : Julien Mathis and Romain Le Merlus under
|
||||||
# GPL License: http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt
|
# GPL Licence 2.0.
|
||||||
#
|
|
||||||
# Developped by : Julien Mathis - Romain Le Merlus
|
|
||||||
# Mathavarajan Sugumaran
|
|
||||||
#
|
|
||||||
###################################################################
|
|
||||||
# This program is free software; you can redistribute it and/or
|
|
||||||
# modify it under the terms of the GNU General Public License
|
|
||||||
# as published by the Free Software Foundation; either version 2
|
|
||||||
# of the License, or (at your option) any later version.
|
|
||||||
#
|
|
||||||
# This program is distributed in the hope that it will be useful,
|
|
||||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
# GNU General Public License for more details.
|
|
||||||
#
|
#
|
||||||
# For information : contact@merethis.com
|
# This program is free software; you can redistribute it and/or modify it under
|
||||||
####################################################################
|
# the terms of the GNU General Public License as published by the Free Software
|
||||||
|
# Foundation ; either version 2 of the License.
|
||||||
|
#
|
||||||
|
# This program is distributed in the hope that it will be useful, but WITHOUT ANY
|
||||||
|
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||||
|
# PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
||||||
|
#
|
||||||
|
# You should have received a copy of the GNU General Public License along with
|
||||||
|
# this program; if not, see <http://www.gnu.org/licenses>.
|
||||||
|
#
|
||||||
|
# Linking this program statically or dynamically with other modules is making a
|
||||||
|
# combined work based on this program. Thus, the terms and conditions of the GNU
|
||||||
|
# General Public License cover the whole combination.
|
||||||
|
#
|
||||||
|
# As a special exception, the copyright holders of this program give MERETHIS
|
||||||
|
# permission to link this program with independent modules to produce an executable,
|
||||||
|
# regardless of the license terms of these independent modules, and to copy and
|
||||||
|
# distribute the resulting executable under terms of MERETHIS choice, provided that
|
||||||
|
# MERETHIS also meet, for each linked independent module, the terms and conditions
|
||||||
|
# of the license of that module. An independent module is a module which is not
|
||||||
|
# derived from this program. If you modify this program, you may extend this
|
||||||
|
# exception to your version of the program, but you are not obliged to do so. If you
|
||||||
|
# do not wish to do so, delete this exception statement from your version.
|
||||||
|
#
|
||||||
|
# For more information : contact@centreon.com
|
||||||
|
#
|
||||||
|
# SVN : $URL$
|
||||||
|
# SVN : $Id$
|
||||||
|
#
|
||||||
|
####################################################################################
|
||||||
#
|
#
|
||||||
# Plugin init
|
# Plugin init
|
||||||
#
|
#
|
||||||
package centreon;
|
package centreon;
|
||||||
|
|
||||||
use Exporter ();
|
use Exporter();
|
||||||
use FindBin qw($Bin);
|
use FindBin qw($Bin);
|
||||||
use lib "$FindBin::Bin";
|
use lib "$FindBin::Bin";
|
||||||
use lib "@NAGIOS_PLUGINS@";
|
use lib "@NAGIOS_PLUGINS@";
|
||||||
@ -39,15 +54,6 @@ if (eval "require Config::IniFiles" ) {
|
|||||||
exit $ERRORS{'UNKNOWN'};
|
exit $ERRORS{'UNKNOWN'};
|
||||||
}
|
}
|
||||||
|
|
||||||
### RRDTOOL Module
|
|
||||||
use lib qw(@RRDTOOL_PERL_LIB@ ../lib/perl);
|
|
||||||
if (eval "require RRDs" ) {
|
|
||||||
use RRDs;
|
|
||||||
} else {
|
|
||||||
print "Unable to load RRDs perl module\n";
|
|
||||||
exit $ERRORS{'UNKNOWN'};
|
|
||||||
}
|
|
||||||
|
|
||||||
# On défini une version pour les vérifications
|
# On défini une version pour les vérifications
|
||||||
#$VERSION = do { my @r = (q$Revision: XXX $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r };
|
#$VERSION = do { my @r = (q$Revision: XXX $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r };
|
||||||
|
|
||||||
@ -78,7 +84,7 @@ __END__
|
|||||||
|
|
||||||
=head1 NAME
|
=head1 NAME
|
||||||
|
|
||||||
centreon - shared module for Oreon plugins
|
centreon - shared module for Centreon plugins
|
||||||
|
|
||||||
=head1 SYNOPSIS
|
=head1 SYNOPSIS
|
||||||
|
|
||||||
|
@ -1,25 +1,40 @@
|
|||||||
#! /usr/bin/perl -w
|
#! /usr/bin/perl -w
|
||||||
###################################################################
|
################################################################################
|
||||||
# Oreon is developped with GPL Licence 2.0
|
# Copyright 2005-2009 MERETHIS
|
||||||
#
|
# Centreon is developped by : Julien Mathis and Romain Le Merlus under
|
||||||
# GPL License: http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt
|
# GPL Licence 2.0.
|
||||||
#
|
|
||||||
# Developped by : Julien Mathis - Romain Le Merlus
|
|
||||||
# Christophe Coraboeuf - Sugumaran Mathavarajan
|
|
||||||
#
|
|
||||||
###################################################################
|
|
||||||
# This program is free software; you can redistribute it and/or
|
|
||||||
# modify it under the terms of the GNU General Public License
|
|
||||||
# as published by the Free Software Foundation; either version 2
|
|
||||||
# of the License, or (at your option) any later version.
|
|
||||||
#
|
|
||||||
# This program is distributed in the hope that it will be useful,
|
|
||||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
# GNU General Public License for more details.
|
|
||||||
#
|
#
|
||||||
# For information : contact@merethis.com
|
# This program is free software; you can redistribute it and/or modify it under
|
||||||
####################################################################
|
# the terms of the GNU General Public License as published by the Free Software
|
||||||
|
# Foundation ; either version 2 of the License.
|
||||||
|
#
|
||||||
|
# This program is distributed in the hope that it will be useful, but WITHOUT ANY
|
||||||
|
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||||
|
# PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
||||||
|
#
|
||||||
|
# You should have received a copy of the GNU General Public License along with
|
||||||
|
# this program; if not, see <http://www.gnu.org/licenses>.
|
||||||
|
#
|
||||||
|
# Linking this program statically or dynamically with other modules is making a
|
||||||
|
# combined work based on this program. Thus, the terms and conditions of the GNU
|
||||||
|
# General Public License cover the whole combination.
|
||||||
|
#
|
||||||
|
# As a special exception, the copyright holders of this program give MERETHIS
|
||||||
|
# permission to link this program with independent modules to produce an executable,
|
||||||
|
# regardless of the license terms of these independent modules, and to copy and
|
||||||
|
# distribute the resulting executable under terms of MERETHIS choice, provided that
|
||||||
|
# MERETHIS also meet, for each linked independent module, the terms and conditions
|
||||||
|
# of the license of that module. An independent module is a module which is not
|
||||||
|
# derived from this program. If you modify this program, you may extend this
|
||||||
|
# exception to your version of the program, but you are not obliged to do so. If you
|
||||||
|
# do not wish to do so, delete this exception statement from your version.
|
||||||
|
#
|
||||||
|
# For more information : contact@centreon.com
|
||||||
|
#
|
||||||
|
# SVN : $URL$
|
||||||
|
# SVN : $Id$
|
||||||
|
#
|
||||||
|
####################################################################################
|
||||||
#
|
#
|
||||||
# Script init
|
# Script init
|
||||||
#
|
#
|
||||||
|
@ -1,25 +1,40 @@
|
|||||||
#! /usr/bin/perl -w
|
#! /usr/bin/perl -w
|
||||||
###################################################################
|
################################################################################
|
||||||
# Oreon is developped with GPL Licence 2.0
|
# Copyright 2005-2009 MERETHIS
|
||||||
#
|
# Centreon is developped by : Julien Mathis and Romain Le Merlus under
|
||||||
# GPL License: http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt
|
# GPL Licence 2.0.
|
||||||
#
|
|
||||||
# Developped by : Julien Mathis - Romain Le Merlus
|
|
||||||
# Mathavarajan Sugumaran
|
|
||||||
#
|
|
||||||
###################################################################
|
|
||||||
# This program is free software; you can redistribute it and/or
|
|
||||||
# modify it under the terms of the GNU General Public License
|
|
||||||
# as published by the Free Software Foundation; either version 2
|
|
||||||
# of the License, or (at your option) any later version.
|
|
||||||
#
|
|
||||||
# This program is distributed in the hope that it will be useful,
|
|
||||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
# GNU General Public License for more details.
|
|
||||||
#
|
#
|
||||||
# For information : contact@merethis.com
|
# This program is free software; you can redistribute it and/or modify it under
|
||||||
####################################################################
|
# the terms of the GNU General Public License as published by the Free Software
|
||||||
|
# Foundation ; either version 2 of the License.
|
||||||
|
#
|
||||||
|
# This program is distributed in the hope that it will be useful, but WITHOUT ANY
|
||||||
|
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||||
|
# PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
||||||
|
#
|
||||||
|
# You should have received a copy of the GNU General Public License along with
|
||||||
|
# this program; if not, see <http://www.gnu.org/licenses>.
|
||||||
|
#
|
||||||
|
# Linking this program statically or dynamically with other modules is making a
|
||||||
|
# combined work based on this program. Thus, the terms and conditions of the GNU
|
||||||
|
# General Public License cover the whole combination.
|
||||||
|
#
|
||||||
|
# As a special exception, the copyright holders of this program give MERETHIS
|
||||||
|
# permission to link this program with independent modules to produce an executable,
|
||||||
|
# regardless of the license terms of these independent modules, and to copy and
|
||||||
|
# distribute the resulting executable under terms of MERETHIS choice, provided that
|
||||||
|
# MERETHIS also meet, for each linked independent module, the terms and conditions
|
||||||
|
# of the license of that module. An independent module is a module which is not
|
||||||
|
# derived from this program. If you modify this program, you may extend this
|
||||||
|
# exception to your version of the program, but you are not obliged to do so. If you
|
||||||
|
# do not wish to do so, delete this exception statement from your version.
|
||||||
|
#
|
||||||
|
# For more information : contact@centreon.com
|
||||||
|
#
|
||||||
|
# SVN : $URL$
|
||||||
|
# SVN : $Id$
|
||||||
|
#
|
||||||
|
####################################################################################
|
||||||
#
|
#
|
||||||
# Plugin init
|
# Plugin init
|
||||||
#
|
#
|
||||||
|
@ -1,25 +1,40 @@
|
|||||||
#! /usr/bin/perl
|
#! /usr/bin/perl
|
||||||
###################################################################
|
################################################################################
|
||||||
# Oreon is developped with GPL Licence 2.0
|
# Copyright 2005-2009 MERETHIS
|
||||||
#
|
# Centreon is developped by : Julien Mathis and Romain Le Merlus under
|
||||||
# GPL License: http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt
|
# GPL Licence 2.0.
|
||||||
#
|
|
||||||
# Developped by : Julien Mathis - Romain Le Merlus
|
|
||||||
# Mathavarajan Sugumaran
|
|
||||||
#
|
|
||||||
###################################################################
|
|
||||||
# This program is free software; you can redistribute it and/or
|
|
||||||
# modify it under the terms of the GNU General Public License
|
|
||||||
# as published by the Free Software Foundation; either version 2
|
|
||||||
# of the License, or (at your option) any later version.
|
|
||||||
#
|
|
||||||
# This program is distributed in the hope that it will be useful,
|
|
||||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
# GNU General Public License for more details.
|
|
||||||
#
|
#
|
||||||
# For information : contact@merethis.com
|
# This program is free software; you can redistribute it and/or modify it under
|
||||||
####################################################################
|
# the terms of the GNU General Public License as published by the Free Software
|
||||||
|
# Foundation ; either version 2 of the License.
|
||||||
|
#
|
||||||
|
# This program is distributed in the hope that it will be useful, but WITHOUT ANY
|
||||||
|
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||||
|
# PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
||||||
|
#
|
||||||
|
# You should have received a copy of the GNU General Public License along with
|
||||||
|
# this program; if not, see <http://www.gnu.org/licenses>.
|
||||||
|
#
|
||||||
|
# Linking this program statically or dynamically with other modules is making a
|
||||||
|
# combined work based on this program. Thus, the terms and conditions of the GNU
|
||||||
|
# General Public License cover the whole combination.
|
||||||
|
#
|
||||||
|
# As a special exception, the copyright holders of this program give MERETHIS
|
||||||
|
# permission to link this program with independent modules to produce an executable,
|
||||||
|
# regardless of the license terms of these independent modules, and to copy and
|
||||||
|
# distribute the resulting executable under terms of MERETHIS choice, provided that
|
||||||
|
# MERETHIS also meet, for each linked independent module, the terms and conditions
|
||||||
|
# of the license of that module. An independent module is a module which is not
|
||||||
|
# derived from this program. If you modify this program, you may extend this
|
||||||
|
# exception to your version of the program, but you are not obliged to do so. If you
|
||||||
|
# do not wish to do so, delete this exception statement from your version.
|
||||||
|
#
|
||||||
|
# For more information : contact@centreon.com
|
||||||
|
#
|
||||||
|
# SVN : $URL$
|
||||||
|
# SVN : $Id$
|
||||||
|
#
|
||||||
|
####################################################################################
|
||||||
#
|
#
|
||||||
# Plugin init
|
# Plugin init
|
||||||
#
|
#
|
||||||
|
@ -1,25 +1,40 @@
|
|||||||
#! /usr/bin/perl -w
|
#! /usr/bin/perl -w
|
||||||
###################################################################
|
################################################################################
|
||||||
# Oreon is developped with GPL Licence 2.0
|
# Copyright 2005-2009 MERETHIS
|
||||||
#
|
# Centreon is developped by : Julien Mathis and Romain Le Merlus under
|
||||||
# GPL License: http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt
|
# GPL Licence 2.0.
|
||||||
#
|
|
||||||
# Developped by : Julien Mathis - Romain Le Merlus
|
|
||||||
# Mathavarajan Sugumaran
|
|
||||||
#
|
|
||||||
###################################################################
|
|
||||||
# This program is free software; you can redistribute it and/or
|
|
||||||
# modify it under the terms of the GNU General Public License
|
|
||||||
# as published by the Free Software Foundation; either version 2
|
|
||||||
# of the License, or (at your option) any later version.
|
|
||||||
#
|
|
||||||
# This program is distributed in the hope that it will be useful,
|
|
||||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
# GNU General Public License for more details.
|
|
||||||
#
|
#
|
||||||
# For information : contact@merethis.com
|
# This program is free software; you can redistribute it and/or modify it under
|
||||||
####################################################################
|
# the terms of the GNU General Public License as published by the Free Software
|
||||||
|
# Foundation ; either version 2 of the License.
|
||||||
|
#
|
||||||
|
# This program is distributed in the hope that it will be useful, but WITHOUT ANY
|
||||||
|
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||||
|
# PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
||||||
|
#
|
||||||
|
# You should have received a copy of the GNU General Public License along with
|
||||||
|
# this program; if not, see <http://www.gnu.org/licenses>.
|
||||||
|
#
|
||||||
|
# Linking this program statically or dynamically with other modules is making a
|
||||||
|
# combined work based on this program. Thus, the terms and conditions of the GNU
|
||||||
|
# General Public License cover the whole combination.
|
||||||
|
#
|
||||||
|
# As a special exception, the copyright holders of this program give MERETHIS
|
||||||
|
# permission to link this program with independent modules to produce an executable,
|
||||||
|
# regardless of the license terms of these independent modules, and to copy and
|
||||||
|
# distribute the resulting executable under terms of MERETHIS choice, provided that
|
||||||
|
# MERETHIS also meet, for each linked independent module, the terms and conditions
|
||||||
|
# of the license of that module. An independent module is a module which is not
|
||||||
|
# derived from this program. If you modify this program, you may extend this
|
||||||
|
# exception to your version of the program, but you are not obliged to do so. If you
|
||||||
|
# do not wish to do so, delete this exception statement from your version.
|
||||||
|
#
|
||||||
|
# For more information : contact@centreon.com
|
||||||
|
#
|
||||||
|
# SVN : $URL$
|
||||||
|
# SVN : $Id$
|
||||||
|
#
|
||||||
|
####################################################################################
|
||||||
#
|
#
|
||||||
# Plugin init
|
# Plugin init
|
||||||
#
|
#
|
||||||
|
@ -1,24 +1,40 @@
|
|||||||
#! /usr/bin/perl -w
|
#! /usr/bin/perl -w
|
||||||
###################################################################
|
################################################################################
|
||||||
# Oreon is developped with GPL Licence 2.0
|
# Copyright 2005-2009 MERETHIS
|
||||||
#
|
# Centreon is developped by : Julien Mathis and Romain Le Merlus under
|
||||||
# GPL License: http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt
|
# GPL Licence 2.0.
|
||||||
#
|
|
||||||
# Developped by : Julien Mathis - Romain Le Merlus
|
|
||||||
#
|
|
||||||
###################################################################
|
|
||||||
# This program is free software; you can redistribute it and/or
|
|
||||||
# modify it under the terms of the GNU General Public License
|
|
||||||
# as published by the Free Software Foundation; either version 2
|
|
||||||
# of the License, or (at your option) any later version.
|
|
||||||
#
|
|
||||||
# This program is distributed in the hope that it will be useful,
|
|
||||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
# GNU General Public License for more details.
|
|
||||||
#
|
#
|
||||||
# For information : contact@merethis.com
|
# This program is free software; you can redistribute it and/or modify it under
|
||||||
####################################################################
|
# the terms of the GNU General Public License as published by the Free Software
|
||||||
|
# Foundation ; either version 2 of the License.
|
||||||
|
#
|
||||||
|
# This program is distributed in the hope that it will be useful, but WITHOUT ANY
|
||||||
|
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||||
|
# PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
||||||
|
#
|
||||||
|
# You should have received a copy of the GNU General Public License along with
|
||||||
|
# this program; if not, see <http://www.gnu.org/licenses>.
|
||||||
|
#
|
||||||
|
# Linking this program statically or dynamically with other modules is making a
|
||||||
|
# combined work based on this program. Thus, the terms and conditions of the GNU
|
||||||
|
# General Public License cover the whole combination.
|
||||||
|
#
|
||||||
|
# As a special exception, the copyright holders of this program give MERETHIS
|
||||||
|
# permission to link this program with independent modules to produce an executable,
|
||||||
|
# regardless of the license terms of these independent modules, and to copy and
|
||||||
|
# distribute the resulting executable under terms of MERETHIS choice, provided that
|
||||||
|
# MERETHIS also meet, for each linked independent module, the terms and conditions
|
||||||
|
# of the license of that module. An independent module is a module which is not
|
||||||
|
# derived from this program. If you modify this program, you may extend this
|
||||||
|
# exception to your version of the program, but you are not obliged to do so. If you
|
||||||
|
# do not wish to do so, delete this exception statement from your version.
|
||||||
|
#
|
||||||
|
# For more information : contact@centreon.com
|
||||||
|
#
|
||||||
|
# SVN : $URL$
|
||||||
|
# SVN : $Id$
|
||||||
|
#
|
||||||
|
####################################################################################
|
||||||
#
|
#
|
||||||
# Plugin init
|
# Plugin init
|
||||||
#
|
#
|
||||||
|
@ -1,24 +1,40 @@
|
|||||||
#! /usr/bin/perl -w
|
#! /usr/bin/perl -w
|
||||||
###################################################################
|
################################################################################
|
||||||
# Oreon is developped with GPL Licence 2.0
|
# Copyright 2005-2009 MERETHIS
|
||||||
#
|
# Centreon is developped by : Julien Mathis and Romain Le Merlus under
|
||||||
# GPL License: http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt
|
# GPL Licence 2.0.
|
||||||
#
|
|
||||||
# Developped by : Julien Mathis - Romain Le Merlus
|
|
||||||
#
|
|
||||||
###################################################################
|
|
||||||
# This program is free software; you can redistribute it and/or
|
|
||||||
# modify it under the terms of the GNU General Public License
|
|
||||||
# as published by the Free Software Foundation; either version 2
|
|
||||||
# of the License, or (at your option) any later version.
|
|
||||||
#
|
|
||||||
# This program is distributed in the hope that it will be useful,
|
|
||||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
# GNU General Public License for more details.
|
|
||||||
#
|
#
|
||||||
# For information : contact@merethis.com
|
# This program is free software; you can redistribute it and/or modify it under
|
||||||
####################################################################
|
# the terms of the GNU General Public License as published by the Free Software
|
||||||
|
# Foundation ; either version 2 of the License.
|
||||||
|
#
|
||||||
|
# This program is distributed in the hope that it will be useful, but WITHOUT ANY
|
||||||
|
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||||
|
# PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
||||||
|
#
|
||||||
|
# You should have received a copy of the GNU General Public License along with
|
||||||
|
# this program; if not, see <http://www.gnu.org/licenses>.
|
||||||
|
#
|
||||||
|
# Linking this program statically or dynamically with other modules is making a
|
||||||
|
# combined work based on this program. Thus, the terms and conditions of the GNU
|
||||||
|
# General Public License cover the whole combination.
|
||||||
|
#
|
||||||
|
# As a special exception, the copyright holders of this program give MERETHIS
|
||||||
|
# permission to link this program with independent modules to produce an executable,
|
||||||
|
# regardless of the license terms of these independent modules, and to copy and
|
||||||
|
# distribute the resulting executable under terms of MERETHIS choice, provided that
|
||||||
|
# MERETHIS also meet, for each linked independent module, the terms and conditions
|
||||||
|
# of the license of that module. An independent module is a module which is not
|
||||||
|
# derived from this program. If you modify this program, you may extend this
|
||||||
|
# exception to your version of the program, but you are not obliged to do so. If you
|
||||||
|
# do not wish to do so, delete this exception statement from your version.
|
||||||
|
#
|
||||||
|
# For more information : contact@centreon.com
|
||||||
|
#
|
||||||
|
# SVN : $URL$
|
||||||
|
# SVN : $Id$
|
||||||
|
#
|
||||||
|
####################################################################################
|
||||||
#
|
#
|
||||||
# Script init
|
# Script init
|
||||||
#
|
#
|
||||||
|
@ -1,25 +1,40 @@
|
|||||||
#! /usr/bin/perl -w
|
#! /usr/bin/perl -w
|
||||||
###################################################################
|
################################################################################
|
||||||
# Oreon is developped with GPL Licence 2.0
|
# Copyright 2005-2009 MERETHIS
|
||||||
#
|
# Centreon is developped by : Julien Mathis and Romain Le Merlus under
|
||||||
# GPL License: http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt
|
# GPL Licence 2.0.
|
||||||
#
|
|
||||||
# Developped by : Julien Mathis - Romain Le Merlus
|
|
||||||
# Mathavarajan Sugumaran
|
|
||||||
#
|
|
||||||
###################################################################
|
|
||||||
# This program is free software; you can redistribute it and/or
|
|
||||||
# modify it under the terms of the GNU General Public License
|
|
||||||
# as published by the Free Software Foundation; either version 2
|
|
||||||
# of the License, or (at your option) any later version.
|
|
||||||
#
|
|
||||||
# This program is distributed in the hope that it will be useful,
|
|
||||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
# GNU General Public License for more details.
|
|
||||||
#
|
#
|
||||||
# For information : contact@merethis.com
|
# This program is free software; you can redistribute it and/or modify it under
|
||||||
####################################################################
|
# the terms of the GNU General Public License as published by the Free Software
|
||||||
|
# Foundation ; either version 2 of the License.
|
||||||
|
#
|
||||||
|
# This program is distributed in the hope that it will be useful, but WITHOUT ANY
|
||||||
|
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||||
|
# PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
||||||
|
#
|
||||||
|
# You should have received a copy of the GNU General Public License along with
|
||||||
|
# this program; if not, see <http://www.gnu.org/licenses>.
|
||||||
|
#
|
||||||
|
# Linking this program statically or dynamically with other modules is making a
|
||||||
|
# combined work based on this program. Thus, the terms and conditions of the GNU
|
||||||
|
# General Public License cover the whole combination.
|
||||||
|
#
|
||||||
|
# As a special exception, the copyright holders of this program give MERETHIS
|
||||||
|
# permission to link this program with independent modules to produce an executable,
|
||||||
|
# regardless of the license terms of these independent modules, and to copy and
|
||||||
|
# distribute the resulting executable under terms of MERETHIS choice, provided that
|
||||||
|
# MERETHIS also meet, for each linked independent module, the terms and conditions
|
||||||
|
# of the license of that module. An independent module is a module which is not
|
||||||
|
# derived from this program. If you modify this program, you may extend this
|
||||||
|
# exception to your version of the program, but you are not obliged to do so. If you
|
||||||
|
# do not wish to do so, delete this exception statement from your version.
|
||||||
|
#
|
||||||
|
# For more information : contact@centreon.com
|
||||||
|
#
|
||||||
|
# SVN : $URL$
|
||||||
|
# SVN : $Id$
|
||||||
|
#
|
||||||
|
####################################################################################
|
||||||
#
|
#
|
||||||
# Script init
|
# Script init
|
||||||
#
|
#
|
||||||
|
@ -1,25 +1,40 @@
|
|||||||
#! /usr/bin/perl -w
|
#! /usr/bin/perl -w
|
||||||
###################################################################
|
################################################################################
|
||||||
# Oreon is developped with GPL Licence 2.0
|
# Copyright 2005-2009 MERETHIS
|
||||||
#
|
# Centreon is developped by : Julien Mathis and Romain Le Merlus under
|
||||||
# GPL License: http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt
|
# GPL Licence 2.0.
|
||||||
#
|
|
||||||
# Developped by : Julien Mathis - Romain Le Merlus
|
|
||||||
# Mathavarajan Sugumaran
|
|
||||||
#
|
|
||||||
###################################################################
|
|
||||||
# This program is free software; you can redistribute it and/or
|
|
||||||
# modify it under the terms of the GNU General Public License
|
|
||||||
# as published by the Free Software Foundation; either version 2
|
|
||||||
# of the License, or (at your option) any later version.
|
|
||||||
#
|
|
||||||
# This program is distributed in the hope that it will be useful,
|
|
||||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
# GNU General Public License for more details.
|
|
||||||
#
|
#
|
||||||
# For information : contact@merethis.com
|
# This program is free software; you can redistribute it and/or modify it under
|
||||||
####################################################################
|
# the terms of the GNU General Public License as published by the Free Software
|
||||||
|
# Foundation ; either version 2 of the License.
|
||||||
|
#
|
||||||
|
# This program is distributed in the hope that it will be useful, but WITHOUT ANY
|
||||||
|
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||||
|
# PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
||||||
|
#
|
||||||
|
# You should have received a copy of the GNU General Public License along with
|
||||||
|
# this program; if not, see <http://www.gnu.org/licenses>.
|
||||||
|
#
|
||||||
|
# Linking this program statically or dynamically with other modules is making a
|
||||||
|
# combined work based on this program. Thus, the terms and conditions of the GNU
|
||||||
|
# General Public License cover the whole combination.
|
||||||
|
#
|
||||||
|
# As a special exception, the copyright holders of this program give MERETHIS
|
||||||
|
# permission to link this program with independent modules to produce an executable,
|
||||||
|
# regardless of the license terms of these independent modules, and to copy and
|
||||||
|
# distribute the resulting executable under terms of MERETHIS choice, provided that
|
||||||
|
# MERETHIS also meet, for each linked independent module, the terms and conditions
|
||||||
|
# of the license of that module. An independent module is a module which is not
|
||||||
|
# derived from this program. If you modify this program, you may extend this
|
||||||
|
# exception to your version of the program, but you are not obliged to do so. If you
|
||||||
|
# do not wish to do so, delete this exception statement from your version.
|
||||||
|
#
|
||||||
|
# For more information : contact@centreon.com
|
||||||
|
#
|
||||||
|
# SVN : $URL$
|
||||||
|
# SVN : $Id$
|
||||||
|
#
|
||||||
|
####################################################################################
|
||||||
#
|
#
|
||||||
# Script init
|
# Script init
|
||||||
#
|
#
|
||||||
|
@ -1,25 +1,40 @@
|
|||||||
#! /usr/bin/perl -w
|
#! /usr/bin/perl -w
|
||||||
###################################################################
|
################################################################################
|
||||||
# Oreon is developped with GPL Licence 2.0
|
# Copyright 2005-2009 MERETHIS
|
||||||
#
|
# Centreon is developped by : Julien Mathis and Romain Le Merlus under
|
||||||
# GPL License: http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt
|
# GPL Licence 2.0.
|
||||||
#
|
|
||||||
# Developped by : Julien Mathis - Romain Le Merlus
|
|
||||||
# Christophe Coraboeuf - Sugumaran Mathavarajan
|
|
||||||
#
|
|
||||||
###################################################################
|
|
||||||
# This program is free software; you can redistribute it and/or
|
|
||||||
# modify it under the terms of the GNU General Public License
|
|
||||||
# as published by the Free Software Foundation; either version 2
|
|
||||||
# of the License, or (at your option) any later version.
|
|
||||||
#
|
|
||||||
# This program is distributed in the hope that it will be useful,
|
|
||||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
# GNU General Public License for more details.
|
|
||||||
#
|
#
|
||||||
# For information : contact@merethis.com
|
# This program is free software; you can redistribute it and/or modify it under
|
||||||
####################################################################
|
# the terms of the GNU General Public License as published by the Free Software
|
||||||
|
# Foundation ; either version 2 of the License.
|
||||||
|
#
|
||||||
|
# This program is distributed in the hope that it will be useful, but WITHOUT ANY
|
||||||
|
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||||
|
# PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
||||||
|
#
|
||||||
|
# You should have received a copy of the GNU General Public License along with
|
||||||
|
# this program; if not, see <http://www.gnu.org/licenses>.
|
||||||
|
#
|
||||||
|
# Linking this program statically or dynamically with other modules is making a
|
||||||
|
# combined work based on this program. Thus, the terms and conditions of the GNU
|
||||||
|
# General Public License cover the whole combination.
|
||||||
|
#
|
||||||
|
# As a special exception, the copyright holders of this program give MERETHIS
|
||||||
|
# permission to link this program with independent modules to produce an executable,
|
||||||
|
# regardless of the license terms of these independent modules, and to copy and
|
||||||
|
# distribute the resulting executable under terms of MERETHIS choice, provided that
|
||||||
|
# MERETHIS also meet, for each linked independent module, the terms and conditions
|
||||||
|
# of the license of that module. An independent module is a module which is not
|
||||||
|
# derived from this program. If you modify this program, you may extend this
|
||||||
|
# exception to your version of the program, but you are not obliged to do so. If you
|
||||||
|
# do not wish to do so, delete this exception statement from your version.
|
||||||
|
#
|
||||||
|
# For more information : contact@centreon.com
|
||||||
|
#
|
||||||
|
# SVN : $URL$
|
||||||
|
# SVN : $Id$
|
||||||
|
#
|
||||||
|
####################################################################################
|
||||||
#
|
#
|
||||||
# Script init
|
# Script init
|
||||||
#
|
#
|
||||||
|
@ -1,25 +1,40 @@
|
|||||||
#! /usr/bin/perl -w
|
#! /usr/bin/perl -w
|
||||||
###################################################################
|
################################################################################
|
||||||
# Oreon is developped with GPL Licence 2.0
|
# Copyright 2005-2009 MERETHIS
|
||||||
#
|
# Centreon is developped by : Julien Mathis and Romain Le Merlus under
|
||||||
# GPL License: http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt
|
# GPL Licence 2.0.
|
||||||
#
|
|
||||||
# Developped by : Julien Mathis - Romain Le Merlus
|
|
||||||
# Mathavarajan Sugumaran
|
|
||||||
#
|
|
||||||
###################################################################
|
|
||||||
# This program is free software; you can redistribute it and/or
|
|
||||||
# modify it under the terms of the GNU General Public License
|
|
||||||
# as published by the Free Software Foundation; either version 2
|
|
||||||
# of the License, or (at your option) any later version.
|
|
||||||
#
|
|
||||||
# This program is distributed in the hope that it will be useful,
|
|
||||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
# GNU General Public License for more details.
|
|
||||||
#
|
#
|
||||||
# For information : contact@merethis.com
|
# This program is free software; you can redistribute it and/or modify it under
|
||||||
####################################################################
|
# the terms of the GNU General Public License as published by the Free Software
|
||||||
|
# Foundation ; either version 2 of the License.
|
||||||
|
#
|
||||||
|
# This program is distributed in the hope that it will be useful, but WITHOUT ANY
|
||||||
|
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||||
|
# PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
||||||
|
#
|
||||||
|
# You should have received a copy of the GNU General Public License along with
|
||||||
|
# this program; if not, see <http://www.gnu.org/licenses>.
|
||||||
|
#
|
||||||
|
# Linking this program statically or dynamically with other modules is making a
|
||||||
|
# combined work based on this program. Thus, the terms and conditions of the GNU
|
||||||
|
# General Public License cover the whole combination.
|
||||||
|
#
|
||||||
|
# As a special exception, the copyright holders of this program give MERETHIS
|
||||||
|
# permission to link this program with independent modules to produce an executable,
|
||||||
|
# regardless of the license terms of these independent modules, and to copy and
|
||||||
|
# distribute the resulting executable under terms of MERETHIS choice, provided that
|
||||||
|
# MERETHIS also meet, for each linked independent module, the terms and conditions
|
||||||
|
# of the license of that module. An independent module is a module which is not
|
||||||
|
# derived from this program. If you modify this program, you may extend this
|
||||||
|
# exception to your version of the program, but you are not obliged to do so. If you
|
||||||
|
# do not wish to do so, delete this exception statement from your version.
|
||||||
|
#
|
||||||
|
# For more information : contact@centreon.com
|
||||||
|
#
|
||||||
|
# SVN : $URL$
|
||||||
|
# SVN : $Id$
|
||||||
|
#
|
||||||
|
####################################################################################
|
||||||
#
|
#
|
||||||
# Plugin init
|
# Plugin init
|
||||||
#
|
#
|
||||||
|
@ -1,25 +1,40 @@
|
|||||||
#! /usr/bin/perl -w
|
#! /usr/bin/perl -w
|
||||||
###################################################################
|
################################################################################
|
||||||
# Centreon is developped with GPL Licence 2.0
|
# Copyright 2005-2009 MERETHIS
|
||||||
#
|
# Centreon is developped by : Julien Mathis and Romain Le Merlus under
|
||||||
# GPL License: http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt
|
# GPL Licence 2.0.
|
||||||
#
|
|
||||||
# Developped by : Julien Mathis - Romain Le Merlus
|
|
||||||
# Christophe Coraboeuf - Sugumaran Mathavarajan
|
|
||||||
#
|
|
||||||
###################################################################
|
|
||||||
# This program is free software; you can redistribute it and/or
|
|
||||||
# modify it under the terms of the GNU General Public License
|
|
||||||
# as published by the Free Software Foundation; either version 2
|
|
||||||
# of the License, or (at your option) any later version.
|
|
||||||
#
|
|
||||||
# This program is distributed in the hope that it will be useful,
|
|
||||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
# GNU General Public License for more details.
|
|
||||||
#
|
#
|
||||||
# For information : contact@merethis.com
|
# This program is free software; you can redistribute it and/or modify it under
|
||||||
####################################################################
|
# the terms of the GNU General Public License as published by the Free Software
|
||||||
|
# Foundation ; either version 2 of the License.
|
||||||
|
#
|
||||||
|
# This program is distributed in the hope that it will be useful, but WITHOUT ANY
|
||||||
|
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||||
|
# PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
||||||
|
#
|
||||||
|
# You should have received a copy of the GNU General Public License along with
|
||||||
|
# this program; if not, see <http://www.gnu.org/licenses>.
|
||||||
|
#
|
||||||
|
# Linking this program statically or dynamically with other modules is making a
|
||||||
|
# combined work based on this program. Thus, the terms and conditions of the GNU
|
||||||
|
# General Public License cover the whole combination.
|
||||||
|
#
|
||||||
|
# As a special exception, the copyright holders of this program give MERETHIS
|
||||||
|
# permission to link this program with independent modules to produce an executable,
|
||||||
|
# regardless of the license terms of these independent modules, and to copy and
|
||||||
|
# distribute the resulting executable under terms of MERETHIS choice, provided that
|
||||||
|
# MERETHIS also meet, for each linked independent module, the terms and conditions
|
||||||
|
# of the license of that module. An independent module is a module which is not
|
||||||
|
# derived from this program. If you modify this program, you may extend this
|
||||||
|
# exception to your version of the program, but you are not obliged to do so. If you
|
||||||
|
# do not wish to do so, delete this exception statement from your version.
|
||||||
|
#
|
||||||
|
# For more information : contact@centreon.com
|
||||||
|
#
|
||||||
|
# SVN : $URL$
|
||||||
|
# SVN : $Id$
|
||||||
|
#
|
||||||
|
####################################################################################
|
||||||
#
|
#
|
||||||
# Script init
|
# Script init
|
||||||
#
|
#
|
||||||
|
@ -1,25 +1,40 @@
|
|||||||
#! /usr/bin/perl -w
|
#! /usr/bin/perl -w
|
||||||
###################################################################
|
################################################################################
|
||||||
# Oreon is developped with GPL Licence 2.0
|
# Copyright 2005-2009 MERETHIS
|
||||||
#
|
# Centreon is developped by : Julien Mathis and Romain Le Merlus under
|
||||||
# GPL License: http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt
|
# GPL Licence 2.0.
|
||||||
#
|
|
||||||
# Developped by : Julien Mathis - Romain Le Merlus
|
|
||||||
# Christophe Coraboeuf - Sugumaran Mathavarajan
|
|
||||||
#
|
|
||||||
###################################################################
|
|
||||||
# This program is free software; you can redistribute it and/or
|
|
||||||
# modify it under the terms of the GNU General Public License
|
|
||||||
# as published by the Free Software Foundation; either version 2
|
|
||||||
# of the License, or (at your option) any later version.
|
|
||||||
#
|
|
||||||
# This program is distributed in the hope that it will be useful,
|
|
||||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
# GNU General Public License for more details.
|
|
||||||
#
|
#
|
||||||
# For information : contact@merethis.com
|
# This program is free software; you can redistribute it and/or modify it under
|
||||||
####################################################################
|
# the terms of the GNU General Public License as published by the Free Software
|
||||||
|
# Foundation ; either version 2 of the License.
|
||||||
|
#
|
||||||
|
# This program is distributed in the hope that it will be useful, but WITHOUT ANY
|
||||||
|
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||||
|
# PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
||||||
|
#
|
||||||
|
# You should have received a copy of the GNU General Public License along with
|
||||||
|
# this program; if not, see <http://www.gnu.org/licenses>.
|
||||||
|
#
|
||||||
|
# Linking this program statically or dynamically with other modules is making a
|
||||||
|
# combined work based on this program. Thus, the terms and conditions of the GNU
|
||||||
|
# General Public License cover the whole combination.
|
||||||
|
#
|
||||||
|
# As a special exception, the copyright holders of this program give MERETHIS
|
||||||
|
# permission to link this program with independent modules to produce an executable,
|
||||||
|
# regardless of the license terms of these independent modules, and to copy and
|
||||||
|
# distribute the resulting executable under terms of MERETHIS choice, provided that
|
||||||
|
# MERETHIS also meet, for each linked independent module, the terms and conditions
|
||||||
|
# of the license of that module. An independent module is a module which is not
|
||||||
|
# derived from this program. If you modify this program, you may extend this
|
||||||
|
# exception to your version of the program, but you are not obliged to do so. If you
|
||||||
|
# do not wish to do so, delete this exception statement from your version.
|
||||||
|
#
|
||||||
|
# For more information : contact@centreon.com
|
||||||
|
#
|
||||||
|
# SVN : $URL$
|
||||||
|
# SVN : $Id$
|
||||||
|
#
|
||||||
|
#####################################################################################
|
||||||
#
|
#
|
||||||
# Script init
|
# Script init
|
||||||
#
|
#
|
||||||
|
@ -1,25 +1,40 @@
|
|||||||
#! /usr/bin/perl -w
|
#! /usr/bin/perl -w
|
||||||
###################################################################
|
################################################################################
|
||||||
# Oreon is developped with GPL Licence 2.0
|
# Copyright 2005-2009 MERETHIS
|
||||||
#
|
# Centreon is developped by : Julien Mathis and Romain Le Merlus under
|
||||||
# GPL License: http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt
|
# GPL Licence 2.0.
|
||||||
#
|
|
||||||
# Developped by : Julien Mathis - Romain Le Merlus
|
|
||||||
# Christophe Coraboeuf - Sugumaran Mathavarajan
|
|
||||||
#
|
|
||||||
###################################################################
|
|
||||||
# This program is free software; you can redistribute it and/or
|
|
||||||
# modify it under the terms of the GNU General Public License
|
|
||||||
# as published by the Free Software Foundation; either version 2
|
|
||||||
# of the License, or (at your option) any later version.
|
|
||||||
#
|
|
||||||
# This program is distributed in the hope that it will be useful,
|
|
||||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
# GNU General Public License for more details.
|
|
||||||
#
|
#
|
||||||
# For information : contact@merethis.com
|
# This program is free software; you can redistribute it and/or modify it under
|
||||||
####################################################################
|
# the terms of the GNU General Public License as published by the Free Software
|
||||||
|
# Foundation ; either version 2 of the License.
|
||||||
|
#
|
||||||
|
# This program is distributed in the hope that it will be useful, but WITHOUT ANY
|
||||||
|
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||||
|
# PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
||||||
|
#
|
||||||
|
# You should have received a copy of the GNU General Public License along with
|
||||||
|
# this program; if not, see <http://www.gnu.org/licenses>.
|
||||||
|
#
|
||||||
|
# Linking this program statically or dynamically with other modules is making a
|
||||||
|
# combined work based on this program. Thus, the terms and conditions of the GNU
|
||||||
|
# General Public License cover the whole combination.
|
||||||
|
#
|
||||||
|
# As a special exception, the copyright holders of this program give MERETHIS
|
||||||
|
# permission to link this program with independent modules to produce an executable,
|
||||||
|
# regardless of the license terms of these independent modules, and to copy and
|
||||||
|
# distribute the resulting executable under terms of MERETHIS choice, provided that
|
||||||
|
# MERETHIS also meet, for each linked independent module, the terms and conditions
|
||||||
|
# of the license of that module. An independent module is a module which is not
|
||||||
|
# derived from this program. If you modify this program, you may extend this
|
||||||
|
# exception to your version of the program, but you are not obliged to do so. If you
|
||||||
|
# do not wish to do so, delete this exception statement from your version.
|
||||||
|
#
|
||||||
|
# For more information : contact@centreon.com
|
||||||
|
#
|
||||||
|
# SVN : $URL$
|
||||||
|
# SVN : $Id$
|
||||||
|
#
|
||||||
|
####################################################################################
|
||||||
#
|
#
|
||||||
# Script init
|
# Script init
|
||||||
#
|
#
|
||||||
|
@ -1,25 +1,40 @@
|
|||||||
#! /usr/bin/perl -w
|
#! /usr/bin/perl -w
|
||||||
###################################################################
|
################################################################################
|
||||||
# Oreon is developped with GPL Licence 2.0
|
# Copyright 2005-2009 MERETHIS
|
||||||
#
|
# Centreon is developped by : Julien Mathis and Romain Le Merlus under
|
||||||
# GPL License: http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt
|
# GPL Licence 2.0.
|
||||||
#
|
|
||||||
# Developped by : Julien Mathis - Romain Le Merlus
|
|
||||||
# Mathavarajan Sugumaran
|
|
||||||
#
|
|
||||||
###################################################################
|
|
||||||
# This program is free software; you can redistribute it and/or
|
|
||||||
# modify it under the terms of the GNU General Public License
|
|
||||||
# as published by the Free Software Foundation; either version 2
|
|
||||||
# of the License, or (at your option) any later version.
|
|
||||||
#
|
|
||||||
# This program is distributed in the hope that it will be useful,
|
|
||||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
# GNU General Public License for more details.
|
|
||||||
#
|
#
|
||||||
# For information : contact@merethis.com
|
# This program is free software; you can redistribute it and/or modify it under
|
||||||
####################################################################
|
# the terms of the GNU General Public License as published by the Free Software
|
||||||
|
# Foundation ; either version 2 of the License.
|
||||||
|
#
|
||||||
|
# This program is distributed in the hope that it will be useful, but WITHOUT ANY
|
||||||
|
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||||
|
# PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
||||||
|
#
|
||||||
|
# You should have received a copy of the GNU General Public License along with
|
||||||
|
# this program; if not, see <http://www.gnu.org/licenses>.
|
||||||
|
#
|
||||||
|
# Linking this program statically or dynamically with other modules is making a
|
||||||
|
# combined work based on this program. Thus, the terms and conditions of the GNU
|
||||||
|
# General Public License cover the whole combination.
|
||||||
|
#
|
||||||
|
# As a special exception, the copyright holders of this program give MERETHIS
|
||||||
|
# permission to link this program with independent modules to produce an executable,
|
||||||
|
# regardless of the license terms of these independent modules, and to copy and
|
||||||
|
# distribute the resulting executable under terms of MERETHIS choice, provided that
|
||||||
|
# MERETHIS also meet, for each linked independent module, the terms and conditions
|
||||||
|
# of the license of that module. An independent module is a module which is not
|
||||||
|
# derived from this program. If you modify this program, you may extend this
|
||||||
|
# exception to your version of the program, but you are not obliged to do so. If you
|
||||||
|
# do not wish to do so, delete this exception statement from your version.
|
||||||
|
#
|
||||||
|
# For more information : contact@centreon.com
|
||||||
|
#
|
||||||
|
# SVN : $URL$
|
||||||
|
# SVN : $Id$
|
||||||
|
#
|
||||||
|
####################################################################################
|
||||||
#
|
#
|
||||||
# Plugin init
|
# Plugin init
|
||||||
#
|
#
|
||||||
|
@ -1,25 +1,40 @@
|
|||||||
#! /usr/bin/perl -w
|
#! /usr/bin/perl -w
|
||||||
###################################################################
|
################################################################################
|
||||||
# Oreon is developped with GPL Licence 2.0
|
# Copyright 2005-2009 MERETHIS
|
||||||
#
|
# Centreon is developped by : Julien Mathis and Romain Le Merlus under
|
||||||
# GPL License: http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt
|
# GPL Licence 2.0.
|
||||||
#
|
|
||||||
# Developped by : Julien Mathis - Romain Le Merlus
|
|
||||||
# Christophe Coraboeuf - Sugumaran Mathavarajan
|
|
||||||
#
|
|
||||||
###################################################################
|
|
||||||
# This program is free software; you can redistribute it and/or
|
|
||||||
# modify it under the terms of the GNU General Public License
|
|
||||||
# as published by the Free Software Foundation; either version 2
|
|
||||||
# of the License, or (at your option) any later version.
|
|
||||||
#
|
|
||||||
# This program is distributed in the hope that it will be useful,
|
|
||||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
# GNU General Public License for more details.
|
|
||||||
#
|
#
|
||||||
# For information : contact@merethis.com
|
# This program is free software; you can redistribute it and/or modify it under
|
||||||
####################################################################
|
# the terms of the GNU General Public License as published by the Free Software
|
||||||
|
# Foundation ; either version 2 of the License.
|
||||||
|
#
|
||||||
|
# This program is distributed in the hope that it will be useful, but WITHOUT ANY
|
||||||
|
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||||
|
# PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
||||||
|
#
|
||||||
|
# You should have received a copy of the GNU General Public License along with
|
||||||
|
# this program; if not, see <http://www.gnu.org/licenses>.
|
||||||
|
#
|
||||||
|
# Linking this program statically or dynamically with other modules is making a
|
||||||
|
# combined work based on this program. Thus, the terms and conditions of the GNU
|
||||||
|
# General Public License cover the whole combination.
|
||||||
|
#
|
||||||
|
# As a special exception, the copyright holders of this program give MERETHIS
|
||||||
|
# permission to link this program with independent modules to produce an executable,
|
||||||
|
# regardless of the license terms of these independent modules, and to copy and
|
||||||
|
# distribute the resulting executable under terms of MERETHIS choice, provided that
|
||||||
|
# MERETHIS also meet, for each linked independent module, the terms and conditions
|
||||||
|
# of the license of that module. An independent module is a module which is not
|
||||||
|
# derived from this program. If you modify this program, you may extend this
|
||||||
|
# exception to your version of the program, but you are not obliged to do so. If you
|
||||||
|
# do not wish to do so, delete this exception statement from your version.
|
||||||
|
#
|
||||||
|
# For more information : contact@centreon.com
|
||||||
|
#
|
||||||
|
# SVN : $URL$
|
||||||
|
# SVN : $Id$
|
||||||
|
#
|
||||||
|
####################################################################################
|
||||||
#
|
#
|
||||||
# Script init
|
# Script init
|
||||||
#
|
#
|
||||||
|
@ -1,15 +1,40 @@
|
|||||||
#! /usr/bin/perl -w
|
#! /usr/bin/perl -w
|
||||||
###################################################
|
################################################################################
|
||||||
## MERETHIS
|
# Copyright 2005-2009 MERETHIS
|
||||||
##
|
# Centreon is developped by : Julien Mathis and Romain Le Merlus under
|
||||||
## Source Copyright 2005-2008 MERETHIS
|
# GPL Licence 2.0.
|
||||||
##
|
#
|
||||||
## Unauthorized reproduction, copy and distribution
|
# This program is free software; you can redistribute it and/or modify it under
|
||||||
## are not allowed.
|
# the terms of the GNU General Public License as published by the Free Software
|
||||||
##
|
# Foundation ; either version 2 of the License.
|
||||||
## For more informations : contact@merethis.com
|
#
|
||||||
##
|
# This program is distributed in the hope that it will be useful, but WITHOUT ANY
|
||||||
###################################################
|
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||||
|
# PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
||||||
|
#
|
||||||
|
# You should have received a copy of the GNU General Public License along with
|
||||||
|
# this program; if not, see <http://www.gnu.org/licenses>.
|
||||||
|
#
|
||||||
|
# Linking this program statically or dynamically with other modules is making a
|
||||||
|
# combined work based on this program. Thus, the terms and conditions of the GNU
|
||||||
|
# General Public License cover the whole combination.
|
||||||
|
#
|
||||||
|
# As a special exception, the copyright holders of this program give MERETHIS
|
||||||
|
# permission to link this program with independent modules to produce an executable,
|
||||||
|
# regardless of the license terms of these independent modules, and to copy and
|
||||||
|
# distribute the resulting executable under terms of MERETHIS choice, provided that
|
||||||
|
# MERETHIS also meet, for each linked independent module, the terms and conditions
|
||||||
|
# of the license of that module. An independent module is a module which is not
|
||||||
|
# derived from this program. If you modify this program, you may extend this
|
||||||
|
# exception to your version of the program, but you are not obliged to do so. If you
|
||||||
|
# do not wish to do so, delete this exception statement from your version.
|
||||||
|
#
|
||||||
|
# For more information : contact@centreon.com
|
||||||
|
#
|
||||||
|
# SVN : $URL$
|
||||||
|
# SVN : $Id$
|
||||||
|
#
|
||||||
|
####################################################################################
|
||||||
|
|
||||||
use strict;
|
use strict;
|
||||||
use DBI;
|
use DBI;
|
||||||
|
@ -1,25 +1,40 @@
|
|||||||
#! /usr/bin/perl -w
|
#! /usr/bin/perl -w
|
||||||
###################################################################
|
################################################################################
|
||||||
# Oreon is developped with GPL Licence 2.0
|
# Copyright 2005-2009 MERETHIS
|
||||||
#
|
# Centreon is developped by : Julien Mathis and Romain Le Merlus under
|
||||||
# GPL License: http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt
|
# GPL Licence 2.0.
|
||||||
#
|
|
||||||
# Developped by : Julien Mathis - Romain Le Merlus
|
|
||||||
# Mathavarajan Sugumaran
|
|
||||||
#
|
|
||||||
###################################################################
|
|
||||||
# This program is free software; you can redistribute it and/or
|
|
||||||
# modify it under the terms of the GNU General Public License
|
|
||||||
# as published by the Free Software Foundation; either version 2
|
|
||||||
# of the License, or (at your option) any later version.
|
|
||||||
#
|
|
||||||
# This program is distributed in the hope that it will be useful,
|
|
||||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
# GNU General Public License for more details.
|
|
||||||
#
|
#
|
||||||
# For information : contact@merethis.com
|
# This program is free software; you can redistribute it and/or modify it under
|
||||||
####################################################################
|
# the terms of the GNU General Public License as published by the Free Software
|
||||||
|
# Foundation ; either version 2 of the License.
|
||||||
|
#
|
||||||
|
# This program is distributed in the hope that it will be useful, but WITHOUT ANY
|
||||||
|
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||||
|
# PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
||||||
|
#
|
||||||
|
# You should have received a copy of the GNU General Public License along with
|
||||||
|
# this program; if not, see <http://www.gnu.org/licenses>.
|
||||||
|
#
|
||||||
|
# Linking this program statically or dynamically with other modules is making a
|
||||||
|
# combined work based on this program. Thus, the terms and conditions of the GNU
|
||||||
|
# General Public License cover the whole combination.
|
||||||
|
#
|
||||||
|
# As a special exception, the copyright holders of this program give MERETHIS
|
||||||
|
# permission to link this program with independent modules to produce an executable,
|
||||||
|
# regardless of the license terms of these independent modules, and to copy and
|
||||||
|
# distribute the resulting executable under terms of MERETHIS choice, provided that
|
||||||
|
# MERETHIS also meet, for each linked independent module, the terms and conditions
|
||||||
|
# of the license of that module. An independent module is a module which is not
|
||||||
|
# derived from this program. If you modify this program, you may extend this
|
||||||
|
# exception to your version of the program, but you are not obliged to do so. If you
|
||||||
|
# do not wish to do so, delete this exception statement from your version.
|
||||||
|
#
|
||||||
|
# For more information : contact@centreon.com
|
||||||
|
#
|
||||||
|
# SVN : $URL$
|
||||||
|
# SVN : $Id$
|
||||||
|
#
|
||||||
|
####################################################################################
|
||||||
#
|
#
|
||||||
# Plugin init
|
# Plugin init
|
||||||
#
|
#
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#! /usr/bin/perl
|
#! /usr/bin/perl
|
||||||
|
|
||||||
#
|
#
|
||||||
# $Id: check_graph_remote_storage.pl,v 1.2 2005/07/27 22:21:49 wistof Exp $
|
# $Id$
|
||||||
#
|
#
|
||||||
# Oreon's plugins are developped with GPL Licence :
|
# Oreon's plugins are developped with GPL Licence :
|
||||||
# http://www.fsf.org/licenses/gpl.txt
|
# http://www.fsf.org/licenses/gpl.txt
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#! /usr/bin/perl
|
#! /usr/bin/perl
|
||||||
|
|
||||||
#
|
#
|
||||||
# $Id: check_graph_remote_storage.pl,v 1.2 2005/07/27 22:21:49 wistof Exp $
|
# $Id$
|
||||||
#
|
#
|
||||||
# centreon's plugins are developped with GPL Licence :
|
# centreon's plugins are developped with GPL Licence :
|
||||||
# http://www.fsf.org/licenses/gpl.txt
|
# http://www.fsf.org/licenses/gpl.txt
|
||||||
|
@ -1,25 +1,40 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
###################################################################
|
################################################################################
|
||||||
# Oreon is developped with GPL Licence 2.0
|
# Copyright 2005-2009 MERETHIS
|
||||||
#
|
# Centreon is developped by : Julien Mathis and Romain Le Merlus under
|
||||||
# GPL License: http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt
|
# GPL Licence 2.0.
|
||||||
#
|
|
||||||
# Developped by : Julien Mathis - Romain Le Merlus
|
|
||||||
# Christophe Coraboeuf - Sugumaran Mathavarajan
|
|
||||||
#
|
|
||||||
###################################################################
|
|
||||||
# This program is free software; you can redistribute it and/or
|
|
||||||
# modify it under the terms of the GNU General Public License
|
|
||||||
# as published by the Free Software Foundation; either version 2
|
|
||||||
# of the License, or (at your option) any later version.
|
|
||||||
#
|
|
||||||
# This program is distributed in the hope that it will be useful,
|
|
||||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
# GNU General Public License for more details.
|
|
||||||
#
|
#
|
||||||
# For information : contact@merethis.com
|
# This program is free software; you can redistribute it and/or modify it under
|
||||||
####################################################################
|
# the terms of the GNU General Public License as published by the Free Software
|
||||||
|
# Foundation ; either version 2 of the License.
|
||||||
|
#
|
||||||
|
# This program is distributed in the hope that it will be useful, but WITHOUT ANY
|
||||||
|
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||||
|
# PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
||||||
|
#
|
||||||
|
# You should have received a copy of the GNU General Public License along with
|
||||||
|
# this program; if not, see <http://www.gnu.org/licenses>.
|
||||||
|
#
|
||||||
|
# Linking this program statically or dynamically with other modules is making a
|
||||||
|
# combined work based on this program. Thus, the terms and conditions of the GNU
|
||||||
|
# General Public License cover the whole combination.
|
||||||
|
#
|
||||||
|
# As a special exception, the copyright holders of this program give MERETHIS
|
||||||
|
# permission to link this program with independent modules to produce an executable,
|
||||||
|
# regardless of the license terms of these independent modules, and to copy and
|
||||||
|
# distribute the resulting executable under terms of MERETHIS choice, provided that
|
||||||
|
# MERETHIS also meet, for each linked independent module, the terms and conditions
|
||||||
|
# of the license of that module. An independent module is a module which is not
|
||||||
|
# derived from this program. If you modify this program, you may extend this
|
||||||
|
# exception to your version of the program, but you are not obliged to do so. If you
|
||||||
|
# do not wish to do so, delete this exception statement from your version.
|
||||||
|
#
|
||||||
|
# For more information : contact@centreon.com
|
||||||
|
#
|
||||||
|
# SVN : $URL$
|
||||||
|
# SVN : $Id$
|
||||||
|
#
|
||||||
|
####################################################################################
|
||||||
#
|
#
|
||||||
# Script init
|
# Script init
|
||||||
#
|
#
|
||||||
|
@ -1,25 +1,40 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
###################################################################
|
################################################################################
|
||||||
# Oreon is developped with GPL Licence 2.0
|
# Copyright 2005-2009 MERETHIS
|
||||||
#
|
# Centreon is developped by : Julien Mathis and Romain Le Merlus under
|
||||||
# GPL License: http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt
|
# GPL Licence 2.0.
|
||||||
#
|
|
||||||
# Developped by : Julien Mathis - Romain Le Merlus
|
|
||||||
# Christophe Coraboeuf - Sugumaran Mathavarajan
|
|
||||||
#
|
|
||||||
###################################################################
|
|
||||||
# This program is free software; you can redistribute it and/or
|
|
||||||
# modify it under the terms of the GNU General Public License
|
|
||||||
# as published by the Free Software Foundation; either version 2
|
|
||||||
# of the License, or (at your option) any later version.
|
|
||||||
#
|
|
||||||
# This program is distributed in the hope that it will be useful,
|
|
||||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
# GNU General Public License for more details.
|
|
||||||
#
|
#
|
||||||
# For information : contact@merethis.com
|
# This program is free software; you can redistribute it and/or modify it under
|
||||||
####################################################################
|
# the terms of the GNU General Public License as published by the Free Software
|
||||||
|
# Foundation ; either version 2 of the License.
|
||||||
|
#
|
||||||
|
# This program is distributed in the hope that it will be useful, but WITHOUT ANY
|
||||||
|
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||||
|
# PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
||||||
|
#
|
||||||
|
# You should have received a copy of the GNU General Public License along with
|
||||||
|
# this program; if not, see <http://www.gnu.org/licenses>.
|
||||||
|
#
|
||||||
|
# Linking this program statically or dynamically with other modules is making a
|
||||||
|
# combined work based on this program. Thus, the terms and conditions of the GNU
|
||||||
|
# General Public License cover the whole combination.
|
||||||
|
#
|
||||||
|
# As a special exception, the copyright holders of this program give MERETHIS
|
||||||
|
# permission to link this program with independent modules to produce an executable,
|
||||||
|
# regardless of the license terms of these independent modules, and to copy and
|
||||||
|
# distribute the resulting executable under terms of MERETHIS choice, provided that
|
||||||
|
# MERETHIS also meet, for each linked independent module, the terms and conditions
|
||||||
|
# of the license of that module. An independent module is a module which is not
|
||||||
|
# derived from this program. If you modify this program, you may extend this
|
||||||
|
# exception to your version of the program, but you are not obliged to do so. If you
|
||||||
|
# do not wish to do so, delete this exception statement from your version.
|
||||||
|
#
|
||||||
|
# For more information : contact@centreon.com
|
||||||
|
#
|
||||||
|
# SVN : $URL$
|
||||||
|
# SVN : $Id$
|
||||||
|
#
|
||||||
|
####################################################################################
|
||||||
#
|
#
|
||||||
# Script init
|
# Script init
|
||||||
#
|
#
|
||||||
|
Loading…
x
Reference in New Issue
Block a user