Easy IMF plugin to make a VCS agent IMF-enabled
================================================
1) Stop the VCS cluster
# hastop -all
Note: The steps here are meant for education purposes only and
hence shutdown VCS. You can perform these steps by keeping
VCS online as well. Refer to the VCS Admin guide and
Agent Developer's guide for further details.
2) Let's write a quick VCS agent that starts the script myimf.sh
# mkdir /opt/VRTSvcs/bin/ezimf
# cd /opt/VRTSvcs/bin/ezimf
# vi myimf.sh (enter the following text)
---------------------------------------------------------------------------
#!/bin/sh
while [ 1 ]
do
sleep 60
/usr/bin/logger -p kern.alert "hello world from myimf.sh"...