<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns:m="http://schemas.microsoft.com/office/2004/12/omml" xmlns="http://www.w3.org/TR/REC-html40">

<head>
<meta http-equiv=Content-Type content="text/html; charset=us-ascii">
<meta name=Generator content="Microsoft Word 12 (filtered medium)">
<style>
<!--
 /* Font Definitions */
 @font-face
        {font-family:Calibri;
        panose-1:2 15 5 2 2 2 4 3 2 4;}
 /* Style Definitions */
 p.MsoNormal, li.MsoNormal, div.MsoNormal
        {margin:0in;
        margin-bottom:.0001pt;
        font-size:11.0pt;
        font-family:"Calibri","sans-serif";}
a:link, span.MsoHyperlink
        {mso-style-priority:99;
        color:blue;
        text-decoration:underline;}
a:visited, span.MsoHyperlinkFollowed
        {mso-style-priority:99;
        color:purple;
        text-decoration:underline;}
span.EmailStyle17
        {mso-style-type:personal-compose;
        font-family:"Calibri","sans-serif";
        color:windowtext;}
.MsoChpDefault
        {mso-style-type:export-only;}
@page WordSection1
        {size:8.5in 11.0in;
        margin:1.0in 1.0in 1.0in 1.0in;}
div.WordSection1
        {page:WordSection1;}
-->
</style>
<!--[if gte mso 9]><xml>
 <o:shapedefaults v:ext="edit" spidmax="1026" />
</xml><![endif]--><!--[if gte mso 9]><xml>
 <o:shapelayout v:ext="edit">
  <o:idmap v:ext="edit" data="1" />
 </o:shapelayout></xml><![endif]-->
</head>

<body lang=EN-US link=blue vlink=purple>

<div class=WordSection1>

<p class=MsoNormal>I have custom scripts located in /usr/share/cluster, they
are associated with each service in the cluster and execute when the service
starts/stops.  At the beginning of the start/stop sections I have a
definition to send me an email when the service starts/stops.  Whenever I update
the cluster config by issuing the command “ccs_tool update
/etc/cluster/cluster.conf”, for each service already running I get the
email stating the cluster service is starting even thought it doesn’t because
it already is running.  I cannot seem to figure out why this is. 
Here is an example of my script in /usr/share/cluster.  Everything works
great, I am just stumped as to why I get email about the services starting anytime
I update the cluster.conf file.  Any incite is appreciated.<o:p></o:p></p>

<p class=MsoNormal><o:p> </o:p></p>

<p class=MsoNormal>#!/bin/sh<o:p></o:p></p>

<p class=MsoNormal>#<o:p></o:p></p>

<p class=MsoNormal># Cluster service script to start/stop oracle<o:p></o:p></p>

<p class=MsoNormal>#<o:p></o:p></p>

<p class=MsoNormal>HOSTNAME=`/bin/hostname`<o:p></o:p></p>

<p class=MsoNormal>SVCNAME="service1"<o:p></o:p></p>

<p class=MsoNormal>STARTMSG="Starting $SVCNAME on node $HOSTNAME"<o:p></o:p></p>

<p class=MsoNormal>STOPMSG="Stopping $SVCNAME on node $HOSTNAME"<o:p></o:p></p>

<p class=MsoNormal><o:p> </o:p></p>

<p class=MsoNormal>case $1 in<o:p></o:p></p>

<p class=MsoNormal>  start)<o:p></o:p></p>

<p class=MsoNormal>        /bin/echo
$STARTMSG | /bin/mail -s "RED HAT CLUSTER SERVICE" my.email@somewhere.com<o:p></o:p></p>

<p class=MsoNormal>        su - oracle -c
"/service1/rcs/start_oracle.sh"<o:p></o:p></p>

<p class=MsoNormal>        ;;<o:p></o:p></p>

<p class=MsoNormal><o:p> </o:p></p>

<p class=MsoNormal>  stop)<o:p></o:p></p>

<p class=MsoNormal>        /bin/echo
$STOPMSG | /bin/mail -s "RED HAT CLUSTER SERVICE" my.email@somewhere.com<o:p></o:p></p>

<p class=MsoNormal>        su - oracle -c
"/service1/rcs/stop_oracle.sh" <o:p></o:p></p>

<p class=MsoNormal>        ;;<o:p></o:p></p>

<p class=MsoNormal>esac<o:p></o:p></p>

<p class=MsoNormal>exit<o:p></o:p></p>

</div>

</body>

</html>