Silvan Calarco
c4e68e7c68
install a default nrpe command configuration for nagios [release 2.15-2mamba;Wed May 07 2014]
140 lines
4.6 KiB
RPMSpec
140 lines
4.6 KiB
RPMSpec
%define nrpeport 5666
|
|
%define nrpeuser nrpe
|
|
%define nrpegroup nrpe
|
|
|
|
Name: nagios-nrpe
|
|
Version: 2.15
|
|
Release: 2mamba
|
|
Summary: Nagios Remote Plugin Executor (NRPE)
|
|
Group: Network/Monitoring
|
|
Vendor: openmamba
|
|
Distribution: openmamba
|
|
Packager: Davide Madrisan <davide.madrisan@gmail.com>
|
|
URL: http://www.nagios.org
|
|
Source0: http://sourceforge.net/projects/nagios/files/nrpe-2.x/nrpe-%{version}/nrpe-%{version}.tar.gz
|
|
Source1: nagios-nrpe.sysconfig
|
|
Source2: nagios-commands-nrpe.cfg
|
|
Patch0: %{name}-2.13-initscript_add_reload.patch
|
|
Patch1: %{name}-2.13-initscript_extra_options.patch
|
|
Patch2: %{name}-2.13-include_nrpe_d_directory.patch
|
|
Patch3: %{name}-2.13-initscript_return_codes.patch
|
|
Patch4: %{name}-2.13-relocate_pid_file.patch
|
|
License: GPL
|
|
## AUTOBUILDREQ-BEGIN
|
|
BuildRequires: glibc-devel
|
|
BuildRequires: initscripts
|
|
BuildRequires: libopenssl-devel
|
|
## AUTOBUILDREQ-END
|
|
Requires: initscripts
|
|
Provides: nrpe = %{?epoch:%epoch:}%{version}-%{release}
|
|
Requires: nagios-plugins
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-root
|
|
|
|
%description
|
|
Nrpe runs as a background process on the remote host and processes command execution requests from the check_nrpe plugin on the Nagios host.
|
|
Upon receiving a plugin request from an authorized host, it will execute the command line associated with the command name it received and send the program output and return code back to the check_nrpe plugin.
|
|
|
|
%package -n nagios-plugins-nrpe
|
|
Summary: Nagios Remote Plugin Executor Plugin
|
|
Group: Network/Monitoring
|
|
|
|
%description -n nagios-plugins-nrpe
|
|
The check_nrpe plugin is run on the Nagios host and is used to contact the NRPE process on remote hosts.
|
|
The plugin requests that a plugin be executed on the remote host and wait for the NRPE process to execute the plugin and return the result.
|
|
The plugin then uses the output and return code from the plugin execution on the remote host for its own output and return code.
|
|
|
|
%prep
|
|
%setup -q -n nrpe-%{version}
|
|
%patch0 -p1
|
|
%patch1 -p1
|
|
%patch2 -p1
|
|
%patch3 -p1
|
|
%patch4 -p1
|
|
|
|
%build
|
|
CFLAGS="$RPM_OPT_FLAGS" CXXFLAGS="$RPM_OPT_FLAGS" \
|
|
%configure \
|
|
--with-init-dir=%{_initrddir} \
|
|
--with-nrpe-port=%{nrpeport} \
|
|
--with-nrpe-user=%{nrpeuser} \
|
|
--with-nrpe-group=%{nrpegroup} \
|
|
--bindir=%{_sbindir} \
|
|
--libdir=/doesnt/matter/ \
|
|
--libexecdir=%{_libdir}/nagios/plugins \
|
|
--datadir=%{_datadir}/nagios \
|
|
--sysconfdir=%{_sysconfdir}/nagios \
|
|
--localstatedir=%{_localstatedir}/log/nagios \
|
|
--enable-command-args
|
|
|
|
%make
|
|
|
|
%install
|
|
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
|
install -D -p -m 0755 init-script %{buildroot}/%{_initrddir}/nrpe
|
|
install -D -p -m 0644 sample-config/nrpe.cfg %{buildroot}/%{_sysconfdir}/nagios/nrpe.cfg
|
|
install -D -p -m 0755 src/nrpe %{buildroot}%{_sbindir}/nrpe
|
|
install -D -p -m 0755 src/check_nrpe %{buildroot}%{_libdir}/nagios/plugins/check_nrpe
|
|
install -D -p -m 0644 %{S:1} %{buildroot}/%{_sysconfdir}/sysconfig/nrpe
|
|
|
|
install -d %{buildroot}%{_sysconfdir}/nrpe.d
|
|
install -d %{buildroot}%{_localstatedir}/run/nrpe
|
|
|
|
install -D -m0644 %{SOURCE2} %{buildroot}%{_sysconfdir}/nagios/conf.d/commands-nrpe.cfg
|
|
|
|
%clean
|
|
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
|
|
|
%pre
|
|
getent group %{nrpegroup} >/dev/null || groupadd -r %{nrpegroup}
|
|
getent passwd %{nrpeuser} >/dev/null || \
|
|
%{_sbindir}/useradd -c "Nagios NRPE user" -d %{_localstatedir}/run/nrpe \
|
|
-r -g %{nrpegroup} -s /sbin/nologin %{nrpeuser} 2>/dev/null
|
|
exit 0
|
|
|
|
%preun
|
|
if [ $1 = 0 ]; then
|
|
/sbin/service nrpe stop >/dev/null 2>&1
|
|
/sbin/chkconfig --del nrpe
|
|
fi
|
|
exit 0
|
|
|
|
%post
|
|
/sbin/chkconfig --add nrpe
|
|
exit 0
|
|
|
|
%postun
|
|
if [ "$1" -ge "1" ]; then
|
|
/sbin/service nrpe condrestart >/dev/null 2>&1
|
|
fi
|
|
exit 0
|
|
|
|
%files
|
|
%defattr(-,root,root)
|
|
%{_sbindir}/nrpe
|
|
%{_initrddir}/nrpe
|
|
%config(noreplace) %{_sysconfdir}/nagios/nrpe.cfg
|
|
%config(noreplace) %{_sysconfdir}/sysconfig/nrpe
|
|
%dir %{_sysconfdir}/nagios
|
|
%dir %{_sysconfdir}/nrpe.d
|
|
%dir %attr(775, %{nrpeuser}, %{nrpegroup}) %{_localstatedir}/run/nrpe
|
|
%doc LEGAL README README.SSL SECURITY docs/NRPE.pdf
|
|
|
|
%files -n nagios-plugins-nrpe
|
|
%defattr(-,root,root,-)
|
|
%{_sysconfdir}/nagios/conf.d/commands-nrpe.cfg
|
|
%{_libdir}/nagios/plugins/check_nrpe
|
|
|
|
%changelog
|
|
* Wed May 07 2014 Silvan Calarco <silvan.calarco@mambasoft.it> 2.15-2mamba
|
|
- require nagios-plugins
|
|
- install a default nrpe command configuration for nagios
|
|
|
|
* Sun Jan 12 2014 Davide Madrisan <davide.madrisan@gmail.com> 2.15-1mamba
|
|
- update to 2.15
|
|
|
|
* Thu Jan 03 2013 Automatic Build System <autodist@mambasoft.it> 2.14-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Tue Oct 23 2012 Davide Madrisan <davide.madrisan@gmail.com> 2.13-1mamba
|
|
- package created by autospec
|