Skip to content
Snippets Groups Projects
Commit 9a9cc652 authored by Per Cederqvist's avatar Per Cederqvist
Browse files

Added support for Solaris 9.

parent 215960b8
No related branches found
No related tags found
No related merge requests found
# Install the service.
getent services nrpe >/dev/null
if [ $? = 2 ]
then
echo 'nrpe 5666/tcp # Nagios NRPE' >> /etc/services
fi
# Install the SVC
if grep "^nrpe stream tcp" /etc/inetd.conf >/dev/null 2>&1
then :
else
echo "nrpe stream tcp nowait nagios $prefix/bin/nrpe nrpe -c $prefix/etc/nrpe.cfg -i" >> /etc/inetd.conf
pkill -HUP -P 1 -u root -x inetd
fi
FILESYSTEMS=`get_tempfile nrpfs`
trap "rm -f $FILESYSTEMS" 0
# Create a host-specific config file.
{ df -F ufs; df -F tmpfs; } \
| awk '{ print $1 }' \
| tee $FILESYSTEMS \
| while read mp
do
dev=`mount|awk '$1 == "'$mp'" { print $3 }'`
case $dev in
/*) arg=$dev;;
swap) arg=$mp;;
*) echo unknown: mp=$mp dev=$dev >&2
arg=$mp;;
esac
echo $arg `echo $mp | sed -e 's%^/$%/root%' -e 's%/%-%g'`
done \
|awk '{ print "command[check-disk" $2 "]='$prefix'/libexec/check_disk " $1 }'\
> $prefix/etc/nrpe-host-auto.cfg
# This file is centrally managed. Do not edit. Source:
# svn+ssh://lsvn.lysator.liu.se/svnroot/nagios-plugins/trunk/nagios-plugins
command[check-iostatE]=@PREFIX@/libexec/check_iostatE -C @PREFIX@/etc/check_iostatE.cfg
PATH=/bin:/sbin:/usr/sbin:/usr/ccs/bin:/usr/local/bin
export PATH
#!/bin/sh
# Install gawk locally, as check_iostatE needs it.
if [ -f /opt/lysator/bin/gawk ]
then :
else
if [ -f /usr/local/bin/gawk ]
then
mkdir -p /opt/lysator/bin
cp /usr/local/bin/gawk /opt/lysator/bin
else
echo '*** No gawk found, so not installed in /opt/lysator/bin.' >&2
echo '*** check_iostatE might fail!' >&2
fi
fi
--without-openssl --disable-nls
solaris9
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment