Send Linux-ha-cvs mailing list submissions to
        [email protected]

To subscribe or unsubscribe via the World Wide Web, visit
        http://lists.community.tummy.com/mailman/listinfo/linux-ha-cvs
or, via email, send a message with subject or body 'help' to
        [EMAIL PROTECTED]

You can reach the person managing the list at
        [EMAIL PROTECTED]

When replying, please edit your Subject line so it is more specific
than "Re: Contents of Linux-ha-cvs digest..."


Today's Topics:

   1. Linux-HA CVS: mgmt by zhenh from 
      ([email protected])
   2. Linux-HA CVS: lib by sunjd from  ([email protected])
   3. Linux-HA CVS: lrm by sunjd from  ([email protected])
   4. Linux-HA CVS: lib by sunjd from  ([email protected])


----------------------------------------------------------------------

Message: 1
Date: Sun, 14 May 2006 18:19:27 -0600 (MDT)
From: [email protected]
Subject: [Linux-ha-cvs] Linux-HA CVS: mgmt by zhenh from 
To: [EMAIL PROTECTED]
Message-ID: <[EMAIL PROTECTED]>

linux-ha CVS committal

Author  : zhenh
Host    : 
Project : linux-ha
Module  : mgmt

Dir     : linux-ha/mgmt/client


Modified Files:
        haclient.py.in 


Log Message:
return heartbeat as the default provider
===================================================================
RCS file: /home/cvs/linux-ha/linux-ha/mgmt/client/haclient.py.in,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -3 -r1.38 -r1.39
--- haclient.py.in      13 May 2006 16:20:19 -0000      1.38
+++ haclient.py.in      15 May 2006 00:19:26 -0000      1.39
@@ -1851,7 +1851,7 @@
        def get_rsc_providers(self, rsc_class, rsc_type) :
                provider = self.query("rsc_providers\n%s\n%s"%(rsc_class, 
rsc_type))
                if provider == [] :
-                       return [""]
+                       return ["heartbeat"]
                return provider
 
        def rsc_exists(self, rsc_id) :




------------------------------

Message: 2
Date: Sun, 14 May 2006 21:27:48 -0600 (MDT)
From: [email protected]
Subject: [Linux-ha-cvs] Linux-HA CVS: lib by sunjd from 
To: [EMAIL PROTECTED]
Message-ID: <[EMAIL PROTECTED]>

linux-ha CVS committal

Author  : sunjd
Host    : 
Project : linux-ha
Module  : lib

Dir     : linux-ha/lib/plugins/lrm


Modified Files:
        raexechb.c 


Log Message:
Bug 1229: Add more metadata pieces for heartbeat resources, make it more helpful

===================================================================
RCS file: /home/cvs/linux-ha/linux-ha/lib/plugins/lrm/raexechb.c,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -3 -r1.46 -r1.47
--- raexechb.c  26 Dec 2005 22:46:37 -0000      1.46
+++ raexechb.c  15 May 2006 03:27:47 -0000      1.47
@@ -57,6 +57,22 @@
 "  </longdesc>\n"\
 "  <shortdesc lang=\"en\">%s</shortdesc>\n"\
 "  <parameters>\n"\
+"     <parameter name=\"1\" unique="1" required="0">\n"
+"        <longdesc lang=\"en\">\n"
+"           This argument will be passed as the first argument to the"
+"           heartbeat resource agent (assuming it supports one)\n"
+"        </longdesc>\n"
+"        <shortdesc lang=\"en\">argv[1]</shortdesc>\n"
+"        <content type=\"string\" default=" " />\n"
+"     </parameter>\n"
+"     <parameter name=\"2\" unique="1" required="0">\n"
+"        <longdesc lang=\"en\">\n"
+"           This argument will be passed as the first argument to the"
+"           heartbeat resource agent (assuming it supports one)\n"
+"        </longdesc>\n"
+"        <shortdesc lang=\"en\">argv[2]</shortdesc>\n"
+"        <content type=\"string\" default=" " />\n"
+"     </parameter>\n"
 "  </parameters>\n"\
 "  <actions>\n"\
 "    <action name=\"start\"   timeout=\"15\" />\n"\




------------------------------

Message: 3
Date: Sun, 14 May 2006 21:35:44 -0600 (MDT)
From: [email protected]
Subject: [Linux-ha-cvs] Linux-HA CVS: lrm by sunjd from 
To: [EMAIL PROTECTED]
Message-ID: <[EMAIL PROTECTED]>

linux-ha CVS committal

Author  : sunjd
Host    : 
Project : linux-ha
Module  : lrm

Dir     : linux-ha/lrm/admin


Modified Files:
        lrmadmin.c 


Log Message:
minor changes: typoes and formats
===================================================================
RCS file: /home/cvs/linux-ha/linux-ha/lrm/admin/lrmadmin.c,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -3 -r1.35 -r1.36
--- lrmadmin.c  22 Jun 2005 06:53:41 -0000      1.35
+++ lrmadmin.c  15 May 2006 03:35:43 -0000      1.36
@@ -1,4 +1,4 @@
-/* $Id: lrmadmin.c,v 1.35 2005/06/22 06:53:41 sunjd Exp $ */
+/* $Id: lrmadmin.c,v 1.36 2006/05/15 03:35:43 sunjd Exp $ */
 /* File: lrmadmin.c
  * Description: A adminstration tool for Local Resource Manager
  *
@@ -116,8 +116,8 @@
 "         {-I|--information} <rsc_id>\n"
 "         {-C|--raclass_supported}\n"
 "         {-T|--ratype_supported} <raclss>\n"
-"         {-M|--metadata} <raclss> <ratype> <provider|NULL>\n"
-"         {-P|--provider} <raclss> <ratype>\n"
+"         {-M|--metadata} <raclass> <ratype> <provider|NULL>\n"
+"         {-P|--provider} <raclass> <ratype>\n"
 "         {-h|--help}\n";
 
 #define OPTION_OBSCURE_CHECK \
@@ -629,7 +629,7 @@
 
        metadata = lrmd->lrm_ops->get_rsc_type_metadata(lrmd, class, type, 
provider);
        if (NULL!=metadata) {
-               printf ("metadata of %s(%s) is: %s\n",type,class,metadata);
+               printf ("metadata of %s(%s) is:\n %s\n",type,class,metadata);
                g_free (metadata);
        }
        return 0;
@@ -939,6 +939,9 @@
 
 /*
  * $Log: lrmadmin.c,v $
+ * Revision 1.36  2006/05/15 03:35:43  sunjd
+ * minor changes: typoes and formats
+ *
  * Revision 1.35  2005/06/22 06:53:41  sunjd
  * handling for no parameter
  *




------------------------------

Message: 4
Date: Sun, 14 May 2006 21:40:57 -0600 (MDT)
From: [email protected]
Subject: [Linux-ha-cvs] Linux-HA CVS: lib by sunjd from 
To: [EMAIL PROTECTED]
Message-ID: <[EMAIL PROTECTED]>

linux-ha CVS committal

Author  : sunjd
Host    : 
Project : linux-ha
Module  : lib

Dir     : linux-ha/lib/plugins/lrm


Modified Files:
        raexechb.c 


Log Message:
add the line continuing symbol
===================================================================
RCS file: /home/cvs/linux-ha/linux-ha/lib/plugins/lrm/raexechb.c,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -3 -r1.47 -r1.48
--- raexechb.c  15 May 2006 03:27:47 -0000      1.47
+++ raexechb.c  15 May 2006 03:40:57 -0000      1.48
@@ -57,22 +57,22 @@
 "  </longdesc>\n"\
 "  <shortdesc lang=\"en\">%s</shortdesc>\n"\
 "  <parameters>\n"\
-"     <parameter name=\"1\" unique="1" required="0">\n"
-"        <longdesc lang=\"en\">\n"
-"           This argument will be passed as the first argument to the"
-"           heartbeat resource agent (assuming it supports one)\n"
-"        </longdesc>\n"
-"        <shortdesc lang=\"en\">argv[1]</shortdesc>\n"
-"        <content type=\"string\" default=" " />\n"
-"     </parameter>\n"
-"     <parameter name=\"2\" unique="1" required="0">\n"
-"        <longdesc lang=\"en\">\n"
-"           This argument will be passed as the first argument to the"
-"           heartbeat resource agent (assuming it supports one)\n"
-"        </longdesc>\n"
-"        <shortdesc lang=\"en\">argv[2]</shortdesc>\n"
-"        <content type=\"string\" default=" " />\n"
-"     </parameter>\n"
+"     <parameter name=\"1\" unique=\"1\" required=\"0\">\n"\
+"        <longdesc lang=\"en\">\n"\
+"           This argument will be passed as the first argument to the"\
+"           heartbeat resource agent (assuming it supports one)\n"\
+"        </longdesc>\n"\
+"        <shortdesc lang=\"en\">argv[1]</shortdesc>\n"\
+"        <content type=\"string\" default=" " />\n"\
+"     </parameter>\n"\
+"     <parameter name=\"2\" unique=\"1\" required=\"0\">\n"\
+"        <longdesc lang=\"en\">\n"\
+"           This argument will be passed as the first argument to the"\
+"           heartbeat resource agent (assuming it supports one)\n"\
+"        </longdesc>\n"\
+"        <shortdesc lang=\"en\">argv[2]</shortdesc>\n"\
+"        <content type=\"string\" default=" " />\n"\
+"     </parameter>\n"\
 "  </parameters>\n"\
 "  <actions>\n"\
 "    <action name=\"start\"   timeout=\"15\" />\n"\




------------------------------

_______________________________________________
Linux-ha-cvs mailing list
[email protected]
http://lists.community.tummy.com/mailman/listinfo/linux-ha-cvs


End of Linux-ha-cvs Digest, Vol 30, Issue 41
********************************************

Reply via email to