1
0
mirror of https://github.com/opinkerfi/nagios-plugins.git synced 2026-02-13 02:20:57 +01:00

Compare commits

...

21 Commits

Author SHA1 Message Date
Pall Sigurdsson
16ed641f8b Automatic commit of package [nagios-okplugin-check_hpacucli] release [1.2-2]. 2012-08-23 11:00:03 +00:00
Pall Sigurdsson
77c5917350 Automatic commit of package [nagios-okplugin-check_ibm_bladecenter] release [1.1.2-3]. 2012-08-23 10:59:45 +00:00
Pall Sigurdsson
8e7144c1a4 Automatic commit of package [nagios-okplugin-check_yum] release [0.7.4-2]. 2012-08-23 10:59:23 +00:00
Pall Sigurdsson
89c8e69d1e version number of scripts bumped 2012-08-23 10:58:42 +00:00
Pall Sigurdsson
36e6dbe188 Automatic commit of package [nagios-okplugin-mailblacklist] release [1.0-1]. 2012-08-23 10:58:21 +00:00
Pall Sigurdsson
518372579a Automatic commit of package [nagios-okplugin-check_hpacucli] release [1.2-1]. 2012-08-23 10:56:08 +00:00
Pall Sigurdsson
75511d21da Automatic commit of package [nagios-okplugin-check_ibm_bladecenter] release [1.1.2-2]. 2012-08-23 10:55:36 +00:00
Pall Sigurdsson
36db6b9661 Automatic commit of package [nagios-okplugin-check_yum] release [0.7.4-1]. 2012-08-23 10:54:14 +00:00
Pall Sigurdsson
4a98095f7c Automatic commit of package [nagios-okplugin-check_nagios] release [1.1-1]. 2012-08-23 10:51:54 +00:00
Pall Sigurdsson
2ccd5989e3 Automatic commit of package [nagios-plugins-check_cpu] release [1.0-1]. 2012-08-23 10:50:56 +00:00
Pall Sigurdsson
626ec4f2b9 Automatic commit of package [nagios-okplugin-check_eva] release [1.0.2-1]. 2012-08-23 10:49:43 +00:00
Pall Sigurdsson
1637f8f93b Automatic commit of package [nagios-okplugin-apc] release [2.1.0-1]. 2012-08-23 10:49:04 +00:00
Pall Sigurdsson
1209c00087 Merge branch 'master' of https://opensource.ok.is/git/misc 2012-08-07 13:23:14 +00:00
Pall Sigurdsson
65004322a9 bugfix, check_nagios_needs_reload check for reload instead of reparse 2012-08-07 13:23:08 +00:00
Pall Sigurdsson
5342a3cf16 Automatic commit of package [nagios-okplugin-check_ironport] release [1.1.4-1]. 2012-07-31 16:07:22 +00:00
Pall Sigurdsson
d6a23a3ca4 initial packaging for nagios-okplugin-check_ironport 2012-07-31 16:07:01 +00:00
Pall Sigurdsson
960cb63b40 Automatic commit of package [nagios-okplugin-check_ironport] release [1.1.3-1]. 2012-07-31 16:06:33 +00:00
Pall Sigurdsson
59b745678a initial packaging for nagios-okplugin-check_ironport 2012-07-31 16:06:16 +00:00
Pall Sigurdsson
ff9e3d96e7 fixed typo in error messages 2012-07-17 20:33:29 +00:00
Pall Sigurdsson
74cda834ab changed sssu subcommands from being singlequoted to doublequoted for windows compatibility 2012-07-17 20:30:55 +00:00
Pall Sigurdsson
bd4aa7f57d rpm spec file added. version number bumped 2012-07-17 20:20:15 +00:00
16 changed files with 103 additions and 22 deletions

View File

@@ -2,7 +2,7 @@
Summary: A Nagios plugin to check APC devices
Name: nagios-okplugin-apc
Version: 0.0.3
Version: 2.1.0
Release: 1%{?dist}
License: GPLv2+
Group: Applications/System
@@ -38,6 +38,10 @@ rm -rf %{buildroot}
%{_libdir}/nagios/plugins/*
%changelog
* Thu Aug 23 2012 Pall Sigurdsson <palli@opensource.is> 2.1.0-1
- Version number bumped to 2.1.0 (palli@opensource.is)
- Added noarch buildarch (tommi@tommi.org)
* Mon Mar 12 2012 Pall Sigurdsson <palli@opensource.is> 0.0.3-1
- new package built with tito

View File

@@ -2,7 +2,7 @@
Summary: A Nagios plugin to check SMTP blacklists
Name: nagios-okplugin-mailblacklist
Version: 0.0.2
Version: 1.0
Release: 1%{?dist}
License: GPLv2+
Group: Applications/System
@@ -38,6 +38,9 @@ rm -rf %{buildroot}
%{_libdir}/nagios/plugins/*
%changelog
* Thu Aug 23 2012 Pall Sigurdsson <palli@opensource.is> 1.0-1
- Updated buildarch to noarch (tommi@tommi.org)
* Mon Mar 12 2012 Pall Sigurdsson <palli@opensource.is> 0.0.2-1
- new package built with tito

View File

@@ -23,7 +23,7 @@ use Nagios::Plugin;
# Create the Nagios plugin object
my $np = Nagios::Plugin->new(
usage => "Usage: %s -H <hostname> -u <username> -p <password> -s <share>",
version => "0.01",
version => "1.0",
);
# Add valid arguments

View File

@@ -2,7 +2,7 @@
Summary: A Nagios plugin to check CPU on Linux servers
Name: nagios-plugins-check_cpu
Version: 0.3
Version: 1.0
Release: 1%{?dist}
License: GPLv2+
Group: Applications/System
@@ -42,6 +42,10 @@ rm -rf %{buildroot}
%changelog
* Thu Aug 23 2012 Pall Sigurdsson <palli@opensource.is> 1.0-1
- Version number bumped
- Updates buildarch to noarch (tommi@tommi.org)
* Mon Mar 12 2012 Pall Sigurdsson <palli@opensource.is> 0.3-1
- new package built with tito

View File

@@ -288,7 +288,7 @@ sub check_disk {
}
close (NAVICLIOUT);
if ($disk_ok_count eq 0) {
print "No disk were founded !\n";
print "No disk were found !\n";
$state = 'UNKNOWN';
} elsif ($crit_count > 0) {
$state='CRITICAL';

View File

@@ -207,7 +207,7 @@ def run_sssu(system=None, command="ls system full"):
commands.append(command)
commandstring = "sssu "
for i in commands: commandstring = commandstring + "'%s' " % i
for i in commands: commandstring = commandstring + '"%s" ' % i
global server_side_troubleshooting
if server_side_troubleshooting == True:
commandstring = 'cat "debug/%s"' % command

View File

@@ -2,7 +2,7 @@
Summary: A Nagios plugin to check HP EVA Disk Systems
Name: nagios-okplugin-check_eva
Version: 1.0.1
Version: 1.0.2
Release: 1%{?dist}
License: GPLv2+
Group: Applications/System
@@ -40,6 +40,10 @@ rm -rf %{buildroot}
/etc/nrpe.d/check_eva.cfg
%changelog
* Thu Aug 23 2012 Pall Sigurdsson <palli@opensource.is> 1.0.2-1
- changed sssu subcommands from being singlequoted to doublequoted for windows
compatibility (palli@opensource.is)
* Mon Mar 12 2012 Pall Sigurdsson <palli@opensource.is> 1.0.1-1
- new package built with tito

View File

@@ -26,7 +26,7 @@ debugging = False
# No real need to change anything below here
version="1.0"
version="1.1"
ok=0
warning=1
critical=2

View File

@@ -2,8 +2,8 @@
Summary: A Nagios plugin to check HP Array with hpacucli
Name: nagios-okplugin-check_hpacucli
Version: 0.0.3
Release: 1%{?dist}
Version: 1.2
Release: 2%{?dist}
License: GPLv2+
Group: Applications/System
URL: http://opensource.is/trac/wiki/check_hpacucli
@@ -38,6 +38,12 @@ rm -rf %{buildroot}
/etc/nrpe.d/check_hpacucli.cfg
%changelog
* Thu Aug 23 2012 Pall Sigurdsson <palli@opensource.is> 1.2-2
- version number of scripts bumped (palli@opensource.is)
* Thu Aug 23 2012 Pall Sigurdsson <palli@opensource.is> 1.2-1
- check_command is now sudo'ed (palli@opensource.is)
* Mon Mar 12 2012 Pall Sigurdsson <palli@opensource.is> 0.0.3-1
- new package built with tito

View File

@@ -22,7 +22,7 @@
# No real need to change anything below here
version="1.1.0"
version="1.1.2"
ok=0
warning=1
critical=2

View File

@@ -3,7 +3,7 @@
Summary: A Nagios plugin to check IBM Bladecenters
Name: nagios-okplugin-check_ibm_bladecenter
Version: 1.1.2
Release: 1%{?dist}
Release: 3%{?dist}
License: GPLv2+
Group: Applications/System
URL: http://opensource.ok.is/trac/wiki/Nagios-OKPlugin-check_ibm_bladecenter
@@ -36,15 +36,15 @@ rm -rf %{buildroot}
%files
%defattr(-,root,root,-)
%doc README
%{_libdir}/nagios/plugins/check_ibm_bladecenter.py
%{_libdir}/nagios/plugins/*
#%config(noreplace) %{_sysconfdir}/nrpe.d/check_bond.cfg
%changelog
* Tue Jul 17 2012 Pall Sigurdsson <palli@opensource.is> 1.1.2-1
- rpm spec file added. version number bumped (palli@opensource.is)
* Thu Aug 23 2012 Pall Sigurdsson <palli@opensource.is> 1.1.2-3
- version number of scripts bumped (palli@opensource.is)
* Tue Jul 17 2012 Pall Sigurdsson <palli@opensource.is> 1.1.1-1
- new package built with tito
* Thu Aug 23 2012 Pall Sigurdsson <palli@opensource.is> 1.1.2-2
- rpm spec file added. version number bumped (palli@opensource.is)
* Tue Jul 17 2012 Pall Sigurdsson 1.0.0-1

View File

@@ -0,0 +1,48 @@
%define debug_package %{nil}
Summary: A Nagios plugin to check Cisco Ironport
Name: nagios-okplugin-check_ironport
Version: 1.1.4
Release: 1%{?dist}
License: GPLv2+
Group: Applications/System
URL: http://opensource.ok.is/trac/wiki/
Source0: http://opensource.ok.is/trac/browser/nagios-plugins/check_ironport/releases/%{name}-%{version}.tar.gz
Requires: nagios-plugins
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
Packager: Pall Sigurdsson <palli@opensource.is>
BuildArch: noarch
Requires: nrpe
%description
Checks the health status of a Cisco Ironport
%prep
%setup -q
%build
%install
rm -rf %{buildroot}
install -D -p -m 0755 check_ironport.py %{buildroot}%{_libdir}/nagios/plugins/check_ironport.py
%clean
rm -rf %{buildroot}
%files
%defattr(-,root,root,-)
%{_libdir}/nagios/plugins/*
#%config(noreplace) %{_sysconfdir}/nrpe.d/check_bond.cfg
%changelog
* Tue Jul 31 2012 Pall Sigurdsson <palli@opensource.is> 1.1.4-1
- initial packaging for nagios-okplugin-check_ironport (palli@opensource.is)
* Tue Jul 31 2012 Pall Sigurdsson <palli@opensource.is> 1.1.3-1
- new package built with tito
* Tue Jul 31 2012 Pall Sigurdsson 1.0.0-1
- Initial packaging

View File

@@ -7,7 +7,7 @@ try:
c = config(cfg_file='/etc/nagios/nagios.cfg')
c.parse()
result = c.needs_reparse()
result = c.needs_reload()
if result == True:
print "Warning - Nagios configuration has changed since last restart"

View File

@@ -2,7 +2,7 @@
Summary: A set of Nagios plugins to check the health of a nagios host
Name: nagios-okplugin-check_nagios
Version: 0.0.8
Version: 1.1
Release: 1%{?dist}
License: GPLv2+
Group: Applications/System
@@ -40,6 +40,12 @@ rm -rf %{buildroot}
/etc/nrpe.d/check_nagios.cfg
%changelog
* Thu Aug 23 2012 Pall Sigurdsson <palli@opensource.is> 1.1-1
- Version number bumped
- bugfix, check_nagios_needs_reload check for reload instead of reparse
(palli@opensource.is)
- fixed missing tempfile cleanup (root@manage.tr.is)
* Mon Mar 12 2012 Pall Sigurdsson <palli@opensource.is> 0.0.8-1
- LICENSE file added (palli@opensource.is)

View File

@@ -26,7 +26,7 @@
__author__ = "Hari Sekhon"
__title__ = "Nagios plugin to check the YUM package management system for package updates."
__version__ = "0.7.3"
__version__ = "0.7.4"
# Changes:
# 0.7.2 Addes support for rhel6-style output (palli@opensource.is)

View File

@@ -2,8 +2,8 @@
Summary: Nagios plugin to test for Yum updates on RedHat/CentOS Linux.
Name: nagios-okplugin-check_yum
Version: 0.7.3
Release: 1%{?dist}
Version: 0.7.4
Release: 2%{?dist}
License: GPLv2+
Group: Applications/System
URL: http://opensource.is/trac/wiki/check_yum
@@ -39,6 +39,12 @@ rm -rf %{buildroot}
/etc/nrpe.d/check_yum.cfg
%changelog
* Thu Aug 23 2012 Pall Sigurdsson <palli@opensource.is> 0.7.4-2
- version number of scripts bumped (palli@opensource.is)
* Thu Aug 23 2012 Pall Sigurdsson <palli@opensource.is> 0.7.4-1
- Merging with check_yum from code.google.com (palli@opensource.is)
* Mon Mar 12 2012 Pall Sigurdsson <palli@opensource.is> 0.7.3-1
- new package built with tito