mirror of
https://github.com/monitoring-plugins/monitoring-plugins.git
synced 2026-02-03 18:49:29 -05:00
928 lines
16 KiB
RPMSpec
928 lines
16 KiB
RPMSpec
%global upstream_name monitoring-plugins
|
|
%global version 2.3.3
|
|
%global plugindir %{_libdir}/monitoring/plugins
|
|
%global commit 72dd0a308130b9778828d143d1b9d9906218d6ac
|
|
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
|
%global fromgit 0
|
|
|
|
%define _unpackaged_files_terminate_build 0
|
|
|
|
Name: %{upstream_name}
|
|
Version: %{version}
|
|
Summary: Monitoring Plugins from the Monitoring Plugins Team
|
|
|
|
License: GPLv3
|
|
URL: https://www.monitoring-plugins.org
|
|
## When using checkouts from git, use the following
|
|
%if 0%{?fromgit}
|
|
Release: git.%{?shortcommit}.1%{?dist}
|
|
Source0: https://github.com/monitoring-plugins/%{name}/archive/%{commit}/%{name}-%{shortcommit}.tar.gz
|
|
%else
|
|
Release: 1%{?dist}
|
|
Source0: https://www.monitoring-plugins.org/download/monitoring-plugins-%{version}.tar.gz
|
|
%endif
|
|
Conflicts: nagios-plugins
|
|
|
|
|
|
|
|
|
|
##### BUILD REQUIREMENTS #####
|
|
# Needed for the git code
|
|
%if 0%{?fromgit}
|
|
BuildRequires: automake
|
|
BuildRequires: autoconf
|
|
BuildRequires: gettext-devel
|
|
%endif
|
|
### General build requirements
|
|
BuildRequires: gcc
|
|
BuildRequires: make
|
|
BuildRequires: automake
|
|
|
|
### Check Plugin specific build requirements
|
|
# check_by_ssh
|
|
BuildRequires: openssh-clients
|
|
|
|
# check_curl
|
|
BuildRequires: libcurl-devel >= 7.15.2
|
|
BuildRequires: openssl-devel
|
|
BuildRequires: uriparser-devel >= 0.7.5
|
|
|
|
# check_dbi
|
|
%if 0%{?rhel} != 9
|
|
BuildRequires: libdbi-devel
|
|
%endif
|
|
|
|
# check_dig check_dns
|
|
BuildRequires: bind-utils
|
|
|
|
# check_disk_smb
|
|
%if 0%{?rhel} == 7
|
|
BuildRequires: samba-client
|
|
%endif
|
|
|
|
# check_fping
|
|
BuildRequires: fping
|
|
|
|
# check_game
|
|
%if 0%{?rhel} != 8
|
|
BuildRequires: qstat
|
|
%endif
|
|
|
|
# check_hpjd
|
|
BuildRequires: net-snmp-utils
|
|
|
|
# check_ldap check_ldaps
|
|
BuildRequires: openldap-devel
|
|
|
|
# check_load
|
|
BuildRequires: procps-ng
|
|
|
|
# check_mysql check_mysql_query
|
|
%if 0%{?rhel} == 7
|
|
BuildRequires: mariadb-devel
|
|
%endif
|
|
|
|
# check_pgsql
|
|
BuildRequires: postgresql-devel
|
|
|
|
# check_radius
|
|
BuildRequires: radcli-devel
|
|
|
|
# check_snmp
|
|
BuildRequires: net-snmp-devel
|
|
|
|
%description
|
|
Common files for Monitoring Plugins
|
|
|
|
%files
|
|
%{plugindir}/negate
|
|
%{plugindir}/urlize
|
|
%{plugindir}/utils.pm
|
|
%{plugindir}/utils.sh
|
|
%doc ABOUT-NLS
|
|
%doc ACKNOWLEDGEMENTS
|
|
%doc AUTHORS
|
|
%doc CODING
|
|
%doc FAQ
|
|
%doc NEWS
|
|
%doc README
|
|
%doc REQUIREMENTS
|
|
%doc SUPPORT
|
|
%license COPYING
|
|
|
|
|
|
|
|
|
|
##### ACTUAL BUILD #####
|
|
%prep
|
|
%if 0%{?fromgit}
|
|
%autosetup -n %{upstream_name}-%{commit}
|
|
%else
|
|
%autosetup -n %{upstream_name}-%{version}
|
|
%endif
|
|
|
|
|
|
%build
|
|
%if 0%{?fromgit}
|
|
./tools/setup
|
|
%endif
|
|
%configure \
|
|
--prefix=%{_prefix} \
|
|
--libexecdir=%{plugindir} \
|
|
--with-openssl=/usr \
|
|
--with-ping-command="/usr/bin/ping -4 -n -U -w %d -c %d %s" \
|
|
--with-ping6-command="/usr/bin/ping -6 -n -U -w %d -c %d %s"
|
|
%make_build
|
|
|
|
%if 0%{?fromgit}
|
|
make THANKS
|
|
%endif
|
|
|
|
%install
|
|
%make_install
|
|
%{__make} install-root DESTDIR=%{buildroot} INSTALL="%{__install} -p"
|
|
|
|
|
|
|
|
|
|
##### SUB PACKAGES #####
|
|
# all
|
|
%package all
|
|
Summary: Monitoring Plugins - All Check Plugins
|
|
Requires: %{name}
|
|
Requires: %{name}-apt
|
|
Requires: %{name}-breeze
|
|
Requires: %{name}-by_ssh
|
|
Requires: %{name}-cluster
|
|
Requires: %{name}-curl
|
|
%if 0%{?rhel} != 9
|
|
Requires: %{name}-dbi
|
|
%endif
|
|
Requires: %{name}-dhcp
|
|
Requires: %{name}-dig
|
|
Requires: %{name}-disk
|
|
%if 0%{?rhel} == 7
|
|
Requires: %{name}-disk_smb
|
|
%endif
|
|
Requires: %{name}-dns
|
|
Requires: %{name}-dummy
|
|
Requires: %{name}-file_age
|
|
Requires: %{name}-flexlm
|
|
Requires: %{name}-fping
|
|
%if 0%{?rhel} != 8
|
|
Requires: %{name}-game
|
|
%endif
|
|
Requires: %{name}-hpjd
|
|
Requires: %{name}-http
|
|
Requires: %{name}-icmp
|
|
Requires: %{name}-ide_smart
|
|
Requires: %{name}-ifoperstatus
|
|
Requires: %{name}-ifstatus
|
|
Requires: %{name}-ircd
|
|
Requires: %{name}-ldap
|
|
Requires: %{name}-load
|
|
Requires: %{name}-log
|
|
Requires: %{name}-mailq
|
|
Requires: %{name}-mrtg
|
|
Requires: %{name}-mrtgtraf
|
|
%if 0%{?rhel} == 7
|
|
Requires: %{name}-mysql
|
|
Requires: %{name}-mysql_query
|
|
%endif
|
|
Requires: %{name}-nagios
|
|
Requires: %{name}-nt
|
|
Requires: %{name}-ntp
|
|
Requires: %{name}-ntp_peer
|
|
Requires: %{name}-ntp_time
|
|
Requires: %{name}-oracle
|
|
Requires: %{name}-pgsql
|
|
Requires: %{name}-ping
|
|
Requires: %{name}-procs
|
|
Requires: %{name}-radius
|
|
Requires: %{name}-real
|
|
Requires: %{name}-rpc
|
|
Requires: %{name}-sensors
|
|
Requires: %{name}-smtp
|
|
Requires: %{name}-snmp
|
|
Requires: %{name}-ssh
|
|
Requires: %{name}-swap
|
|
Requires: %{name}-tcp
|
|
Requires: %{name}-time
|
|
Requires: %{name}-ups
|
|
Requires: %{name}-uptime
|
|
Requires: %{name}-users
|
|
Requires: %{name}-wave
|
|
|
|
%description all
|
|
Meta package that requires all the check plugins of the Monitoring Plugins
|
|
|
|
%files all
|
|
|
|
|
|
|
|
# check_apt
|
|
%package apt
|
|
Summary: Monitoring Plugins - check_apt
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
%description apt
|
|
Provides check_apt of the Monitoring Plugins.
|
|
|
|
%files apt
|
|
%{plugindir}/check_apt
|
|
|
|
|
|
|
|
# check_breeze
|
|
%package breeze
|
|
Summary: Monitoring Plugins - check_breeze
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
%description breeze
|
|
Provides check_breeze of the Monitoring Plugins.
|
|
|
|
%files breeze
|
|
%{plugindir}/check_breeze
|
|
|
|
|
|
|
|
# check_by_ssh
|
|
%package by_ssh
|
|
Summary: Monitoring Plugins - check_by_ssh
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
%description by_ssh
|
|
Provides check_by_ssh of the Monitoring Plugins.
|
|
|
|
%files by_ssh
|
|
%{plugindir}/check_by_ssh
|
|
|
|
|
|
|
|
# check_cluster
|
|
%package cluster
|
|
Summary: Monitoring Plugins - check_cluster
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
%description cluster
|
|
Provides check_cluster of the Monitoring Plugins.
|
|
|
|
%files cluster
|
|
%{plugindir}/check_cluster
|
|
|
|
|
|
|
|
# check_curl
|
|
%package curl
|
|
Summary: Monitoring Plugins - check_curl
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
%description curl
|
|
Provides check_curl of the Monitoring Plugins.
|
|
|
|
%files curl
|
|
%{plugindir}/check_curl
|
|
|
|
|
|
|
|
# check_dbi
|
|
%if 0%{?rhel} != 9
|
|
%package dbi
|
|
Summary: Monitoring Plugins - check_dbi
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
%description dbi
|
|
Provides check_dbi of the Monitoring Plugins.
|
|
|
|
%files dbi
|
|
%{plugindir}/check_dbi
|
|
%endif
|
|
|
|
|
|
|
|
# check_dhcp
|
|
%package dhcp
|
|
Summary: Monitoring Plugins - check_dhcp
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
%description dhcp
|
|
Provides check_dhcp of the Monitoring Plugins.
|
|
|
|
%files dhcp
|
|
%{plugindir}/check_dhcp
|
|
|
|
|
|
|
|
# check_dig
|
|
%package dig
|
|
Summary: Monitoring Plugins - check_dig
|
|
Requires: %{name} = %{version}-%{release}
|
|
Requires: bind-utils
|
|
|
|
%description dig
|
|
Provides check_dig of the Monitoring Plugins.
|
|
|
|
%files dig
|
|
%{plugindir}/check_dig
|
|
|
|
|
|
|
|
# check_disk
|
|
%package disk
|
|
Summary: Monitoring Plugins - check_disk
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
%description disk
|
|
Provides check_disk of the Monitoring Plugins.
|
|
|
|
%files disk
|
|
%{plugindir}/check_disk
|
|
|
|
|
|
|
|
# check_disk_smb
|
|
%if 0%{?rhel} == 7
|
|
%package disk_smb
|
|
Summary: Monitoring Plugins - check_disk_smb
|
|
Requires: %{name} = %{version}-%{release}
|
|
Requires: samba-client
|
|
|
|
%description disk_smb
|
|
Provides check_disk_smb of the Monitoring Plugins.
|
|
|
|
%files disk_smb
|
|
%{plugindir}/check_disk_smb
|
|
%endif
|
|
|
|
|
|
|
|
# check_dns
|
|
%package dns
|
|
Summary: Monitoring Plugins - check_dns
|
|
Requires: %{name} = %{version}-%{release}
|
|
Requires: bind-utils
|
|
|
|
%description dns
|
|
Provides check_dns of the Monitoring Plugins.
|
|
|
|
%files dns
|
|
%{plugindir}/check_dns
|
|
|
|
|
|
|
|
# check_dummy
|
|
%package dummy
|
|
Summary: Monitoring Plugins - check_dummy
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
%description dummy
|
|
Provides check_dummy of the Monitoring Plugins.
|
|
|
|
%files dummy
|
|
%{plugindir}/check_dummy
|
|
|
|
|
|
|
|
# check_file_age
|
|
%package file_age
|
|
Summary: Monitoring Plugins - check_file_age
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
%description file_age
|
|
Provides check_file_age of the Monitoring Plugins.
|
|
|
|
%files file_age
|
|
%{plugindir}/check_file_age
|
|
|
|
|
|
|
|
# check_flexlm
|
|
%package flexlm
|
|
Summary: Monitoring Plugins - check_flexlm
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
%description flexlm
|
|
Provides check_flexlm of the Monitoring Plugins.
|
|
|
|
%files flexlm
|
|
%{plugindir}/check_flexlm
|
|
|
|
|
|
|
|
# check_fping
|
|
%package fping
|
|
Summary: Monitoring Plugins - check_fping
|
|
Requires: %{name} = %{version}-%{release}
|
|
Requires: fping
|
|
|
|
%description fping
|
|
Provides check_fping of the Monitoring Plugins.
|
|
|
|
%files fping
|
|
%{plugindir}/check_fping
|
|
|
|
|
|
|
|
# check_game
|
|
%if 0%{?rhel} != 8
|
|
%package game
|
|
Summary: Monitoring Plugins - check_fping
|
|
Requires: %{name} = %{version}-%{release}
|
|
Requires: qstat
|
|
|
|
%description game
|
|
Provides check_game of the Monitoring Plugins.
|
|
|
|
%files game
|
|
%{plugindir}/check_game
|
|
%endif
|
|
|
|
|
|
|
|
# check_hpjd
|
|
%package hpjd
|
|
Summary: Monitoring Plugins - check_hpjd
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
%description hpjd
|
|
Provides check_hpjd of the Monitoring Plugins.
|
|
|
|
%files hpjd
|
|
%{plugindir}/check_hpjd
|
|
|
|
|
|
|
|
# check_http
|
|
%package http
|
|
Summary: Monitoring Plugins - check_http
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
%description http
|
|
Provides check_http of the Monitoring Plugins.
|
|
|
|
%files http
|
|
%{plugindir}/check_http
|
|
|
|
|
|
|
|
# check_icmp
|
|
%package icmp
|
|
Summary: Monitoring Plugins - check_icmp
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
%description icmp
|
|
Provides check_icmp of the Monitoring Plugins.
|
|
|
|
%files icmp
|
|
%{plugindir}/check_icmp
|
|
|
|
|
|
|
|
# check_ide_smart
|
|
%package ide_smart
|
|
Summary: Monitoring Plugins - check_ide_smart
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
%description ide_smart
|
|
Provides check_ide_smart of the Monitoring Plugins.
|
|
|
|
%files ide_smart
|
|
%{plugindir}/check_ide_smart
|
|
|
|
|
|
|
|
# check_ifoperstatus
|
|
%package ifoperstatus
|
|
Summary: Monitoring Plugins - check_ifoperstatus
|
|
Requires: %{name} = %{version}-%{release}
|
|
Requires: perl(Net::SNMP)
|
|
|
|
%description ifoperstatus
|
|
Provides check_ifoperstatus of the Monitoring Plugins.
|
|
|
|
%files ifoperstatus
|
|
%{plugindir}/check_ifoperstatus
|
|
|
|
|
|
|
|
# check_ifstatus
|
|
%package ifstatus
|
|
Summary: Monitoring Plugins - check_ifstatus
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
%description ifstatus
|
|
Provides check_ifstatus of the Monitoring Plugins.
|
|
|
|
%files ifstatus
|
|
%{plugindir}/check_ifstatus
|
|
|
|
|
|
|
|
# check_ircd
|
|
%package ircd
|
|
Summary: Monitoring Plugins - check_ircd
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
%description ircd
|
|
Provides check_ircd of the Monitoring Plugins.
|
|
|
|
%files ircd
|
|
%{plugindir}/check_ircd
|
|
|
|
|
|
|
|
# check_ldap
|
|
%package ldap
|
|
Summary: Monitoring Plugins - check_ldap
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
%description ldap
|
|
Provides check_ldap of the Monitoring Plugins.
|
|
|
|
%files ldap
|
|
%{plugindir}/check_ldap
|
|
%{plugindir}/check_ldaps
|
|
|
|
|
|
|
|
# check_load
|
|
%package load
|
|
Summary: Monitoring Plugins - check_load
|
|
Requires: %{name} = %{version}-%{release}
|
|
Requires: procps-ng
|
|
|
|
%description load
|
|
Provides check_load of the Monitoring Plugins.
|
|
|
|
%files load
|
|
%{plugindir}/check_load
|
|
|
|
|
|
|
|
# check_log
|
|
%package log
|
|
Summary: Monitoring Plugins - check_log
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
%description log
|
|
Provides check_log of the Monitoring Plugins.
|
|
|
|
%files log
|
|
%{plugindir}/check_log
|
|
|
|
|
|
|
|
# check_mailq
|
|
%package mailq
|
|
Summary: Monitoring Plugins - check_mailq
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
%description mailq
|
|
Provides check_mailq of the Monitoring Plugins.
|
|
|
|
%files mailq
|
|
%{plugindir}/check_mailq
|
|
|
|
|
|
|
|
# check_mrtg
|
|
%package mrtg
|
|
Summary: Monitoring Plugins - check_mrtg
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
%description mrtg
|
|
Provides check_mrtg of the Monitoring Plugins.
|
|
|
|
%files mrtg
|
|
%{plugindir}/check_mrtg
|
|
|
|
|
|
|
|
# check_mrtgtraf
|
|
%package mrtgtraf
|
|
Summary: Monitoring Plugins - check_mrtgtraf
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
%description mrtgtraf
|
|
Provides check_mrtgtraf of the Monitoring Plugins.
|
|
|
|
%files mrtgtraf
|
|
%{plugindir}/check_mrtgtraf
|
|
|
|
|
|
|
|
%if 0%{?rhel} == 7
|
|
# check_mysql
|
|
%package mysql
|
|
Summary: Monitoring Plugins - check_mysql
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
%description mysql
|
|
Provides check_mysql of the Monitoring Plugins.
|
|
|
|
%files mysql
|
|
%{plugindir}/check_mysql
|
|
|
|
|
|
|
|
# check_mysql_query
|
|
%package mysql_query
|
|
Summary: Monitoring Plugins - check_mysql_query
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
%description mysql_query
|
|
Provides check_mysql_query of the Monitoring Plugins.
|
|
|
|
%files mysql_query
|
|
%{plugindir}/check_mysql_query
|
|
%endif
|
|
|
|
|
|
|
|
# check_nagios
|
|
%package nagios
|
|
Summary: Monitoring Plugins - check_nagios
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
%description nagios
|
|
Provides check_nagios of the Monitoring Plugins.
|
|
|
|
%files nagios
|
|
%{plugindir}/check_nagios
|
|
|
|
|
|
|
|
# check_ntp_peer
|
|
%package ntp_peer
|
|
Summary: Monitoring Plugins - check_ntp_peer
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
%description ntp_peer
|
|
Provides check_ntp_peer of the Monitoring Plugins.
|
|
|
|
%files ntp_peer
|
|
%{plugindir}/check_ntp_peer
|
|
|
|
|
|
|
|
# check_ntp_time
|
|
%package ntp_time
|
|
Summary: Monitoring Plugins - check_ntp_time
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
%description ntp_time
|
|
Provides check_ntp_time of the Monitoring Plugins.
|
|
|
|
%files ntp_time
|
|
%{plugindir}/check_ntp_time
|
|
|
|
|
|
|
|
# check_oracle
|
|
%package oracle
|
|
Summary: Monitoring Plugins - check_oracle
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
%description oracle
|
|
Provides check_oracle of the Monitoring Plugins.
|
|
|
|
%files oracle
|
|
%{plugindir}/check_oracle
|
|
|
|
|
|
|
|
# check_pgsql
|
|
%package pgsql
|
|
Summary: Monitoring Plugins - check_pgsql
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
%description pgsql
|
|
Provides check_pgsql of the Monitoring Plugins.
|
|
|
|
%files pgsql
|
|
%{plugindir}/check_pgsql
|
|
|
|
|
|
|
|
# check_ping
|
|
%package ping
|
|
Summary: Monitoring Plugins - check_ping
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
%description ping
|
|
Provides check_ping of the Monitoring Plugins.
|
|
|
|
%files ping
|
|
%{plugindir}/check_ping
|
|
|
|
|
|
|
|
# check_procs
|
|
%package procs
|
|
Summary: Monitoring Plugins - check_procs
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
%description procs
|
|
Provides check_procs of the Monitoring Plugins.
|
|
|
|
%files procs
|
|
%{plugindir}/check_procs
|
|
|
|
|
|
|
|
# check_radius
|
|
%package radius
|
|
Summary: Monitoring Plugins - check_radius
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
%description radius
|
|
Provides check_radius of the Monitoring Plugins.
|
|
|
|
%files radius
|
|
%{plugindir}/check_radius
|
|
|
|
|
|
|
|
# check_real
|
|
%package real
|
|
Summary: Monitoring Plugins - check_real
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
%description real
|
|
Provides check_real of the Monitoring Plugins.
|
|
|
|
%files real
|
|
%{plugindir}/check_real
|
|
|
|
|
|
|
|
# check_rpc
|
|
%package rpc
|
|
Summary: Monitoring Plugins - check_rpc
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
%description rpc
|
|
Provides check_rpc of the Monitoring Plugins.
|
|
|
|
%files rpc
|
|
%{plugindir}/check_rpc
|
|
|
|
|
|
|
|
# check_sensors
|
|
%package sensors
|
|
Summary: Monitoring Plugins - check_sensors
|
|
Requires: %{name} = %{version}-%{release}
|
|
Requires: lm_sensors
|
|
|
|
%description sensors
|
|
Provides check_sensors of the Monitoring Plugins.
|
|
|
|
%files sensors
|
|
%{plugindir}/check_sensors
|
|
|
|
|
|
|
|
# check_smtp
|
|
%package smtp
|
|
Summary: Monitoring Plugins - check_smtp
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
%description smtp
|
|
Provides check_smtp of the Monitoring Plugins.
|
|
|
|
%files smtp
|
|
%{plugindir}/check_smtp
|
|
|
|
|
|
|
|
# check_snmp
|
|
%package snmp
|
|
Summary: Monitoring Plugins - check_snmp
|
|
Requires: %{name} = %{version}-%{release}
|
|
Requires: net-snmp
|
|
|
|
%description snmp
|
|
Provides check_snmp of the Monitoring Plugins.
|
|
|
|
%files snmp
|
|
%{plugindir}/check_snmp
|
|
|
|
|
|
|
|
# check_ssh
|
|
%package ssh
|
|
Summary: Monitoring Plugins - check_ssh
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
%description ssh
|
|
Provides check_ssh of the Monitoring Plugins.
|
|
|
|
%files ssh
|
|
%{plugindir}/check_ssh
|
|
|
|
|
|
|
|
# check_swap
|
|
%package swap
|
|
Summary: Monitoring Plugins - check_swap
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
%description swap
|
|
Provides check_swap of the Monitoring Plugins.
|
|
|
|
%files swap
|
|
%{plugindir}/check_swap
|
|
|
|
|
|
|
|
# check_tcp
|
|
%package tcp
|
|
Summary: Monitoring Plugins - check_tcp
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
%description tcp
|
|
Provides check_tcp of the Monitoring Plugins.
|
|
|
|
%files tcp
|
|
%{plugindir}/check_clamd
|
|
%{plugindir}/check_ftp
|
|
%{plugindir}/check_imap
|
|
%{plugindir}/check_jabber
|
|
%{plugindir}/check_nntp
|
|
%{plugindir}/check_nntps
|
|
%{plugindir}/check_pop
|
|
%{plugindir}/check_simap
|
|
%{plugindir}/check_spop
|
|
%{plugindir}/check_ssmtp
|
|
%{plugindir}/check_tcp
|
|
%{plugindir}/check_udp
|
|
|
|
|
|
|
|
# check_time
|
|
%package time
|
|
Summary: Monitoring Plugins - check_time
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
%description time
|
|
Provides check_time of the Monitoring Plugins.
|
|
|
|
%files time
|
|
%{plugindir}/check_time
|
|
|
|
|
|
|
|
# check_ups
|
|
%package ups
|
|
Summary: Monitoring Plugins - check_ups
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
%description ups
|
|
Provides check_ups of the Monitoring Plugins.
|
|
|
|
%files ups
|
|
%{plugindir}/check_ups
|
|
|
|
|
|
|
|
# check_uptime
|
|
%package uptime
|
|
Summary: Monitoring Plugins - check_uptime
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
%description uptime
|
|
Provides check_uptime of the Monitoring Plugins.
|
|
|
|
%files uptime
|
|
%{plugindir}/check_uptime
|
|
|
|
|
|
|
|
# check_users
|
|
%package users
|
|
Summary: Monitoring Plugins - check_users
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
%description users
|
|
Provides check_users of the Monitoring Plugins.
|
|
|
|
%files users
|
|
%{plugindir}/check_users
|
|
|
|
|
|
|
|
# check_wave
|
|
%package wave
|
|
Summary: Monitoring Plugins - check_wave
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
%description wave
|
|
Provides check_wave of the Monitoring Plugins.
|
|
|
|
%files wave
|
|
%{plugindir}/check_wave
|
|
|
|
%changelog
|
|
* Wed Oct 20 2011 John Doe <jdoe@example.com> 0.8.18.1-0.1
|
|
- Initial RPM release
|