Summary: Nagios remote plugin execution service/plugin Summary(pl): Demon i wtyczka zdalnego wywoływania wtyczek Nagios Name: nagios-nrpe Version: 2.0 Release: 1 License: GPL v2 Group: Networking Source0: http://dl.sourceforge.net/nagios/nrpe-%{version}.tar.gz # Source0-md5: 70ef9502a3b7e49fa520dbceabfa04d0 Source1: nrpe.init URL: http://www.nagios.org/ BuildRequires: autoconf BuildRequires: automake Requires(pre): /usr/bin/getgid Requires(pre): /bin/id Requires(pre): /usr/sbin/groupadd Requires(pre): /usr/sbin/useradd Requires(post,postun): /sbin/chkconfig Requires: nagios-plugins BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n) %define _sysconfdir /etc/nagios %define _datadir %{_prefix}/share/%{name} %define _plugindir %{_libdir}/nagios/plugins %define _localstatedir %{_var}/log/nagios %define nsusr nagios %define nsgrp nagios %define nsport 5666 %description Nagios nrpe allows you to remotely execute plugins on other hosts and report the plugin output back to the monitoring host. %description -l pl Nagios npre pozwala zdalnie uruchamiać wtyczki na innych hostach, a wynik ich działania zwracać spowrotem do hosta monitorującego. %package plugin Summary: check_nrpe plugin for Nagios Summary(pl): Wtyczka check_nrpe dla Nagiosa Group: Networking %description plugin check_nrpe plugin for Nagios. This plugin allows running plugins on remote machines using nrpe service. %description plugin -l pl Wtyczka check_nrpe dla Nagiosa. Pozwala na zdalne uruchamianie wtyczek na innych komputerach za pomocą demona nrpe. %prep %setup -q -n nrpe-%{version} %build %{__aclocal} %{__autoconf} %configure \ --with-init-dir=/etc/rc.d/init.d \ --with-nrpe-port=%{nsport} \ --with-nrpe-user=%{nsusr} \ --with-nrpe-grp=%{nsgrp} \ --prefix=%{_prefix} \ --exec-prefix=%{_sbindir} \ --bindir=%{_sbindir} \ --libexecdir=%{_plugindir} \ --datadir=%{_prefix}/share/nagios \ --sysconfdir=%{_sysconfdir} \ --localstatedir=%{_localstatedir} %{__make} all %install rm -rf $RPM_BUILD_ROOT install -d $RPM_BUILD_ROOT{/etc/rc.d/init.d,%{_sysconfdir},%{_libdir}/nagios/plugins,%{_sbindir}} \ $RPM_BUILD_ROOT%{_localstatedir} install nrpe.cfg $RPM_BUILD_ROOT/etc/nagios/nrpe.cfg install %{SOURCE1} $RPM_BUILD_ROOT/etc/rc.d/init.d/nrpe install src/nrpe $RPM_BUILD_ROOT%{_sbindir} install src/check_nrpe $RPM_BUILD_ROOT%{_plugindir} %clean rm -rf $RPM_BUILD_ROOT %pre if [ -n "`getgid %{nsgrp}`" ]; then if [ "`getgid %{nsgrp}`" != "72" ]; then echo "Error: group %{nsgrp} doesn't have gid=72. Correct this before installing %{name}." 1>&2 exit 1 fi else /usr/sbin/groupadd -g 72 -f %{nsgrp} fi if [ -n "`id -u %{nsusr} 2>/dev/null`" ]; then if [ "`id -u %{nsusr}`" != "72" ]; then echo "Error: user %{nsusr} doesn't have uid=72. Correct this before installing %{name}." 1>&2 exit 1 fi else /usr/sbin/useradd -u 72 -d %{_libdir}/%{name} -s /bin/false -c "%{name} User" -g %{nsgrp} %{nsusr} 1>&2 fi %post /sbin/chkconfig --add %{name} if [ -f /var/lock/subsys/%{name} ]; then /etc/rc.d/init.d/%{name} restart 1>&2 fi %preun if [ "$1" = "0" ] ; then if [ -f /var/lock/subsys/%{name} ]; then /etc/rc.d/init.d/%{name} stop 1>&2 fi /sbin/chkconfig --del %{name} fi %postun if [ "$1" = "0" ]; then /usr/sbin/userdel %{nsusr} /usr/sbin/groupdel %{nsgrp} fi %files %defattr(644,root,root,755) %doc Changelog LEGAL README* SECURITY %attr(754,root,root) /etc/rc.d/init.d/%{name} %attr(751,root,%{nsgrp}) %dir %{_sysconfdir} %attr(644,root,%{nsgrp}) %config(noreplace) %verify(not size mtime md5) %{_sysconfdir}/nrpe.cfg %attr(755,root,root) %{_sbindir}/nrpe %files plugin %defattr(644,root,root,755) %dir %{_plugindir} %attr(755,root,root) %{_plugindir}/*