diff options
author | Heinz Wiesinger <pprkut@slackbuilds.org> | 2010-05-13 00:08:51 +0200 |
---|---|---|
committer | Heinz Wiesinger <pprkut@slackbuilds.org> | 2010-05-13 00:08:51 +0200 |
commit | b236e0936a555c19c64a0475297aa3aa3307ad18 (patch) | |
tree | e7f1a7bfd6fa62038d2722241725f3c281d98da2 /network | |
parent | d013010ece8e96af846c9079399885551e3a6b3c (diff) |
network/nagios-plugins: Removed from 13.0 repository
Diffstat (limited to 'network')
-rw-r--r-- | network/nagios-plugins/README | 16 | ||||
-rw-r--r-- | network/nagios-plugins/nagios-plugins.SlackBuild | 97 | ||||
-rw-r--r-- | network/nagios-plugins/nagios-plugins.info | 8 | ||||
-rw-r--r-- | network/nagios-plugins/slack-desc | 19 |
4 files changed, 0 insertions, 140 deletions
diff --git a/network/nagios-plugins/README b/network/nagios-plugins/README deleted file mode 100644 index dc132c222344..000000000000 --- a/network/nagios-plugins/README +++ /dev/null @@ -1,16 +0,0 @@ -nagios-plugins (Plugins for the Nagios network monitoring server) - -Unlike many other monitoring tools, Nagios does not include any -internal mechanisms for checking the status of hosts and services on -your network. Instead, Nagios relies on external programs (called -plugins) to do all the dirty work. Plugins are compiled executables or -scripts (Perl scripts, shell scripts, etc.) that can be run from a -command line to check the status or a host or service. - -Remember to install the Nagios::Plugin perl module and its -dependencies to ensure all functionality of perl plugins. - -Remember to install the applications you plan to use plugins with -before installation of nagios-plugins as some plugins are compiled -using the relevant libraries installed on your system for the -application being probed. diff --git a/network/nagios-plugins/nagios-plugins.SlackBuild b/network/nagios-plugins/nagios-plugins.SlackBuild deleted file mode 100644 index 1672bcba9dbd..000000000000 --- a/network/nagios-plugins/nagios-plugins.SlackBuild +++ /dev/null @@ -1,97 +0,0 @@ -#!/bin/sh - -# Slackware build script for nrpe - -# Written by Zordrak <slackbuilds@tpa.me.uk> - -PRGNAM=nagios-plugins -VERSION=${VERSION:-1.4.13} -ARCH=${ARCH:-i486} -BUILD=${BUILD:-1} -TAG=${TAG:-_SBo} - -CWD=$(pwd) -TMP=${TMP:-/tmp/SBo} -PKG=$TMP/package-$PRGNAM -OUTPUT=${OUTPUT:-/tmp} - -if [ "$ARCH" = "i486" ]; then - SLKCFLAGS="-O2 -march=i486 -mtune=i686" - LIBDIRSUFFIX="" -elif [ "$ARCH" = "i686" ]; then - SLKCFLAGS="-O2 -march=i686 -mtune=i686" - LIBDIRSUFFIX="" -elif [ "$ARCH" = "x86_64" ]; then - SLKCFLAGS="-O2 -fPIC" - LIBDIRSUFFIX="64" -fi - -set -e # Exit on most errors - -# Bail out if user or group isn't valid on your system -# For slackbuilds.org, assigned nagios uid/gid are 213/213 -# See http://slackbuilds.org/uid_gid.txt -if ! grep ^nagios: /etc/group 2>&1 > /dev/null; then - echo " You must have a \"nagios\" group to run this script." - echo " # groupadd -g 213 nagios" - exit 1 -elif ! grep ^nagios: /etc/passwd 2>&1 > /dev/null; then - echo " You must have a \"nagios\" user to run this script." - echo " # useradd -u 213 -g nagios -d /usr/nagios -s /bin/false nagios" - exit 1 -fi - -rm -rf $PKG -mkdir -p $TMP $PKG $OUTPUT -cd $TMP -rm -rf $PRGNAM-$VERSION -tar xvf $CWD/$PRGNAM-$VERSION.tar.gz -cd $PRGNAM-$VERSION -chown -R root:root . -find . \ - \( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \ - -exec chmod 755 {} \; -o \ - \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ - -exec chmod 644 {} \; - -CFLAGS="$SLKCFLAGS" \ -CXXFLAGS="$SLKCFLAGS" \ -./configure \ - --prefix=/usr \ - --libdir=/usr/lib${LIBDIRSUFFIX} \ - --libexecdir=/usr/libexec/nagios \ - --sysconfdir=/etc/nagios \ - --localstatedir=/var \ - --build=$ARCH-slackware-linux \ - --with-nagios-user=nagios \ - --with-nagios-group=nagios \ - --without-world-permissions - -make -make install DESTDIR=$PKG - -# Put the contrib plugins dir in along with the official plugins -# otherwise most people will never realise they exist -cp -a contrib $PKG/usr/libexec/nagios/. - -( cd $PKG - find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | \ - xargs strip --strip-unneeded 2> /dev/null || true - find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | \ - xargs strip --strip-unneeded 2> /dev/null -) - -chown -R nagios.nagios $PKG/* - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a \ - README REQUIREMENTS ACKNOWLEDGEMENTS AUTHORS BUGS CODING COPYING \ - ChangeLog FAQ INSTALL LEGAL NEWS SUPPORT THANKS \ - $PKG/usr/doc/$PRGNAM-$VERSION -cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild - -mkdir -p $PKG/install -cat $CWD/slack-desc > $PKG/install/slack-desc - -cd $PKG -/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz diff --git a/network/nagios-plugins/nagios-plugins.info b/network/nagios-plugins/nagios-plugins.info deleted file mode 100644 index 76ab8c6663ec..000000000000 --- a/network/nagios-plugins/nagios-plugins.info +++ /dev/null @@ -1,8 +0,0 @@ -PRGNAM="nagios-plugins" -VERSION="1.4.13" -HOMEPAGE="http://www.nagios.org" -DOWNLOAD="http://downloads.sourceforge.net/nagiosplug/nagios-plugins-1.4.13.tar.gz" -MD5SUM="be6cc7699fff3ee29d1fd4d562377386" -MAINTAINER="Zordrak" -EMAIL="slackbuilds@tpa.me.uk" -APPROVED="rworkman" diff --git a/network/nagios-plugins/slack-desc b/network/nagios-plugins/slack-desc deleted file mode 100644 index 02e8da02f5a1..000000000000 --- a/network/nagios-plugins/slack-desc +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' on -# the right side marks the last column you can put a character in. You must make -# exactly 11 lines for the formatting to be correct. It's also customary to -# leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -nagios-plugins: nagios-plugins (Plugins for the Nagios network monitoring server) -nagios-plugins: -nagios-plugins: Unlike many other monitoring tools, Nagios does not include any -nagios-plugins: internal mechanisms for checking the status of hosts and services on -nagios-plugins: your network. Instead, Nagios relies on external programs (called -nagios-plugins: plugins) to do all the dirty work. Plugins are compiled executables or -nagios-plugins: scripts (Perl scripts, shell scripts, etc.) that can be run from a -nagios-plugins: command line to check the status or a host or service. -nagios-plugins: -nagios-plugins: http://www.nagios.org/ -nagios-plugins: |