[root@fullservicesastro ~]# cat raid1_astro.sh #!/bin/sh MEGA=`/opt/MegaRAID/MegaCli/MegaCli64 -LDInfo -L0 -a0` if [ `echo $MEGA|awk '{print match($0,"Optimal")}'` == 0 ];then /opt/MegaRAID/MegaCli/MegaCli64 -LDInfo -L0 -a0 | mail -s "RAID1-0 ERROR ON `hostname`" fullservices@arnet.com.ar fi MEGA=`/opt/MegaRAID/MegaCli/MegaCli64 -LDInfo -L1 -a0` if [ `echo $MEGA|awk '{print match($0,"Optimal")}'` == 0 ];then /opt/MegaRAID/MegaCli/MegaCli64 -LDInfo -L1 -a0 | mail -s "RAID1-1 ERROR ON `hostname`" fullservices@arnet.com.ar fi