Closes #2 - Initial packaging and fix typos

This commit is contained in:
Tomas Edwardsson 2013-05-22 20:48:27 +00:00
parent 190a9726b1
commit c0ef6774ad
2 changed files with 42 additions and 3 deletions

View File

@ -17,7 +17,7 @@
# About this script
#
# Checks uptime of a specified host, using NRPE is host is remote
# Checks selinux status of a specified host, using NRPE if the host is remote
HOSTN="localhost" # By default check localhost
CHECK_COMMAND="getenforce" # Default command to check selinux status
@ -62,14 +62,14 @@ done
# We we are not checking localhost, lets get remote uptime via NRPE
# We we are not checking localhost, lets get remote selinux status via NRPE
if [ "$HOSTN" != "localhost" ]; then
export PATH=$PATH:/usr/lib/nagios/plugins:/usr/lib64/nagios/plugins:/nagios/usr/lib/nagios/plugins
CHECK_COMMAND="check_nrpe -H $HOSTN -c get_selinux"
fi
# Get the uptime, raise error if we are unsuccessful
# Get the selinux status, raise error if we are unsuccessful
OUTPUT=`$CHECK_COMMAND`
RESULT=$?

View File

@ -0,0 +1,39 @@
%define debug_package %{nil}
Summary: A Nagios plugin to check SELinux status on Linux servers
Name: nagios-plugins-check_selinux
Version: 1.0
Release: 1%{?dist}
License: GPLv3+
Group: Applications/System
URL: https://github.com/opinkerfi/nagios-plugins/tree/master/check_selinux
Source0: http://opensource.ok.is/trac/browser/nagios-plugins/check_selinux/releases/nagios-plugins-check_selinux-%{version}.tar.gz
Requires: nagios-plugins-nrpe libselinux-utils
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
Packager: Tomas Edwardsson <tommi@ok.is>
BuildArch: noarch
%description
This plugin check the enforcing selinux status of a specified host, using NRPE
if the host is remote.
%prep
%setup -q
%build
%install
rm -rf %{buildroot}
install -D -p -m 0755 check_selinux %{buildroot}%{_libdir}/nagios/plugins/check_selinux
%clean
rm -rf %{buildroot}
%files
%defattr(-,root,root,-)
%{_libdir}/nagios/plugins/*
%changelog
* Wed May 22 2013 Tomas Edwardsson <tommi@opensource.is> 1.0-1
- Initial packaging