#!/bin/sh
# 
# Script to restart 'arraymon' daemon after new patched version
# has been installed.

echo "Stopping Arraymon Daemon..."
/etc/init.d/amdemon stop

echo "Starting Arraymon Daemon..."
/etc/init.d/amdemon start

echo "\nTo complete installation of this patch, the new RSM Array 2000"
echo "controller firmware must be downloaded using 'rm6'.  The new" 
echo "firmware image can be found in: /usr/lib/osa/fw/ap02041D.dl"
echo "\n\nPlease refer to the RAID Managers User's Guide for further details"
echo "on downloading controller firmware."

exit 0
