summaryrefslogtreecommitdiffstats
path: root/etc/periodic/daily/405.status-ata-raid
blob: f2178390e76c76c6cea399899943bad442ddf22c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!/bin/sh
#
# $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

case "$daily_status_ata_raid_enable" in
    [Yy][Ee][Ss])
	echo
	echo 'Checking status of ATA raid partitions:'

	rc=0
	for raid in `find /dev/ -name 'ar[0-9]*' -type c | egrep '[0-9]$' \
		| egrep -v 's[0-9]' | cut -d / -f 3`
	     do
		status=`/sbin/atacontrol status $raid`
		echo $status
		raid_rc=`echo $status | grep -v READY | wc -l`
		[ $rc -eq 0 ] && [ $raid_rc -gt 0 ] && rc=3
	     done
	;;

    *)  rc=0;;
esac

exit $rc
OpenPOWER on IntegriCloud