Titel: Mylex raid controller monitoring Bericht door: edwin op Januari 30, 2007, 08:36:32 Voor mensen met een Mylex hardware raid controller is hier een monitoring script:
Code: #!/bin/bash if [ -f /proc/rd/status ]; then STATUS=`cat /proc/rd/status` if [ "$STATUS" != "OK" ]; then syn3-state mylexraid ALERT "Mylex raid controller reports degraded state!" else syn3-state mylexraid OK "Mylex raid controller is online" fi fi Zet deze in je cron.hourly. |