1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-24 00:45:52 +00:00

- Add daily periodic script to report RAID status and alarms

- PORTREVISION bumb

PR:		ports/96085
Submitted by:	maintainer
This commit is contained in:
Sergey Matveychuk 2006-04-20 13:57:05 +00:00
parent d0b2087f76
commit 5ea33df806
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=160011
2 changed files with 100 additions and 1 deletions

View File

@ -7,6 +7,7 @@
PORTNAME= tw_cli
PORTVERSION= 9.3.0.3
PORTREVISION= 1
CATEGORIES= sysutils
MASTER_SITES= http://3ware.com/download/Escalade9000Series/${PORTVERSION}/
DISTNAME= ${PORTNAME}-freebsd_5.4-${DIST_ARCH}-${PORTVERSION}
@ -22,7 +23,10 @@ ONLY_FOR_ARCHS= i386 amd64 ia64
WRKSRC= ${WRKDIR}
NO_BUILD= yes
STRIP= # empty
PLIST_FILES= sbin/tw_cli sbin/tw_sched
SUB_FILES+= 407.status-3ware-raid
PLIST_FILES= sbin/tw_cli sbin/tw_sched \
etc/periodic/daily/407.status-3ware-raid
PLIST_DIRS= etc/periodic/daily etc/periodic
PORTDOCS= tw_cli.8.html tw_sched.8.html
MAN8+= tw_cli.8 tw_sched.8
@ -38,6 +42,9 @@ do-install:
${INSTALL_PROGRAM} ${WRKSRC}/tw_cli ${WRKSRC}/tw_sched ${PREFIX}/sbin/
${INSTALL_MAN} ${WRKSRC}/tw_cli.8.nroff ${MANPREFIX}/man/man8/tw_cli.8
${INSTALL_MAN} ${WRKSRC}/tw_sched.8.nroff ${MANPREFIX}/man/man8/tw_sched.8
@${MKDIR} ${PREFIX}/etc/periodic/daily
${INSTALL_SCRIPT} ${WRKDIR}/407.status-3ware-raid \
${PREFIX}/etc/periodic/daily/
post-install:
.if !defined(NOPORTDOCS)

View File

@ -0,0 +1,92 @@
#!/bin/sh
#
# Shows status of 3ware RAID controllers: twa(4), twe(4)
#
# Authors: Bjoern A. Zeeb, Dmitry Frolov
#
# $FreeBSD$
#
# If there is a global system configuration file, suck it in.
#
if [ -r /etc/defaults/periodic.conf ]
then
. /etc/defaults/periodic.conf
source_periodic_confs
fi
# Defaults.
: ${daily_status_3ware_raid_enable:=NO}
# Alarms persist between "tw_cli alarms" invocation?
# Set to YES for twa(4) and to NO for twe(4).
: ${daily_status_3ware_raid_persist_alarms:=YES}
tw_cli=${tw_cli:-%%PREFIX%%/sbin/tw_cli}
logdir=${logdir:-/var/log}
case "$daily_status_3ware_raid_enable" in
[Yy][Ee][Ss])
echo
echo 'Checking status of 3ware RAID controllers:'
rc=0
# Checking each controller.
for ctrl in `${tw_cli} info | awk '/^c/ { print $1 }'`
do
echo ""
echo "Controller ${ctrl}:"
ctrl_log=${logdir}/3ware_raid_${ctrl}
if test ! -f ${ctrl_log}.today; then
touch ${ctrl_log}.today
fi
mv -f ${ctrl_log}.today ${ctrl_log}.yesterday
${tw_cli} info ${ctrl} > ${ctrl_log}.today
lines=`wc -l ${ctrl_log}.today | awk '{ print $1 }'`
diff -u -$lines ${ctrl_log}.yesterday ${ctrl_log}.today
raid_rc=$?
if test $raid_rc -eq 0; then
cat ${ctrl_log}.today
fi
[ $rc -eq 0 ] && [ $raid_rc -ne 0 ] && rc=3
done
# Checking alarms.
echo "Alarms (most recent first):"
alarms_log=${logdir}/3ware_raid_alarms
case "$daily_status_3ware_raid_persist_alarms" in
[Yy][Ee][Ss])
if test ! -f ${alarms_log}.today; then
touch ${alarms_log}.today
fi
mv -f ${alarms_log}.today ${alarms_log}.yesterday
${tw_cli} alarms > ${alarms_log}.today
cmp -zs ${alarms_log}.yesterday ${alarms_log}.today
raid_rc=$?
if test $raid_rc -ne 0; then
diff -u ${alarms_log}.yesterday ${alarms_log}.today | \
grep -v '^-\|^$'
fi
;;
*)
raid_rc=0
${tw_cli} alarms > ${alarms_log}.today
lines=`wc -l ${alarms_log}.today | awk '{ print $1 }'`
if test $lines -gt 4; then
cat ${alarms_log}.today
raid_rc=1
fi
;;
esac
if test $raid_rc -eq 0; then
echo " No new alarms."
fi
[ $rc -eq 0 ] && [ $raid_rc -ne 0 ] && rc=3
;;
*) rc=0;;
esac
exit $rc
# end