Send Linux-ha-cvs mailing list submissions to
        linux-ha-cvs@lists.linux-ha.org

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: ldirectord by msoffen from 
      (linux-ha-cvs@lists.linux-ha.org)
   2. Linux-HA CVS: heartbeat by msoffen from 
      (linux-ha-cvs@lists.linux-ha.org)
   3. Linux-HA CVS: linux-ha by msoffen from 
      (linux-ha-cvs@lists.linux-ha.org)
   4. Linux-HA CVS: lib by msoffen from 
      (linux-ha-cvs@lists.linux-ha.org)
   5. Linux-HA CVS: doc by alan from  (linux-ha-cvs@lists.linux-ha.org)


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

Message: 1
Date: Mon,  7 Aug 2006 12:41:12 -0600 (MDT)
From: linux-ha-cvs@lists.linux-ha.org
Subject: [Linux-ha-cvs] Linux-HA CVS: ldirectord by msoffen from 
To: [EMAIL PROTECTED]
Message-ID: <[EMAIL PROTECTED]>

linux-ha CVS committal

Author  : msoffen
Host    : 
Project : linux-ha
Module  : ldirectord

Dir     : linux-ha/ldirectord/init.d


Added Files:
        ldirectord.in 
Removed Files:
        ldirectord 


Log Message:
Replaced ldirectord with ldirectord.in




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

Message: 2
Date: Mon,  7 Aug 2006 12:42:51 -0600 (MDT)
From: linux-ha-cvs@lists.linux-ha.org
Subject: [Linux-ha-cvs] Linux-HA CVS: heartbeat by msoffen from 
To: [EMAIL PROTECTED]
Message-ID: <[EMAIL PROTECTED]>

linux-ha CVS committal

Author  : msoffen
Host    : 
Project : linux-ha
Module  : heartbeat

Dir     : linux-ha/heartbeat


Modified Files:
        shellfuncs.in 


Log Message:
Moved echo_failure, echo_success and action into here.
===================================================================
RCS file: /home/cvs/linux-ha/linux-ha/heartbeat/shellfuncs.in,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -3 -r1.23 -r1.24
--- shellfuncs.in       17 Jun 2006 04:11:23 -0000      1.23
+++ shellfuncs.in       7 Aug 2006 18:42:51 -0000       1.24
@@ -46,6 +46,29 @@
     Echo @ECHO_E@ "$@"
 }
 
+echo_failure() {
+    EchoEsc " Heartbeat failure [rc=$1]. $rc_failed"
+    return $1
+}
+
+echo_success() {
+    : Cool!  It started!
+    EchoEsc "$rc_done"
+}
+
+action() {
+  echo -n "$1... "
+  shift
+  $@
+  stat=$?
+  if [ $stat = 0 ]; then
+    echo success
+  else
+    echo failure
+  fi
+  return  $stat
+
+
 hadate() {
   date "+${HA_DATEFMT}"
 }




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

Message: 3
Date: Mon,  7 Aug 2006 12:43:40 -0600 (MDT)
From: linux-ha-cvs@lists.linux-ha.org
Subject: [Linux-ha-cvs] Linux-HA CVS: linux-ha by msoffen from 
To: [EMAIL PROTECTED]
Message-ID: <[EMAIL PROTECTED]>

linux-ha CVS committal

Author  : msoffen
Host    : 
Module  : linux-ha

Dir     : linux-ha


Modified Files:
        configure.in 


Log Message:
Fixed to start getting ldirectord to work on FreeBSD
===================================================================
RCS file: /home/cvs/linux-ha/linux-ha/configure.in,v
retrieving revision 1.541
retrieving revision 1.542
diff -u -3 -r1.541 -r1.542
--- configure.in        3 Aug 2006 10:18:51 -0000       1.541
+++ configure.in        7 Aug 2006 18:43:40 -0000       1.542
@@ -10,7 +10,7 @@
 AC_INIT(heartbeat.spec.in)
 
 AC_CONFIG_AUX_DIR(.)
-AC_REVISION($Revision: 1.541 $) dnl cvs revision
+AC_REVISION($Revision: 1.542 $) dnl cvs revision
 AC_CANONICAL_HOST
 
 
@@ -350,14 +350,15 @@
 dnl Always tries to set the compiler to ANSI C via options (AM)
 dnl Can force other with environment variable "CC".
 AC_PROG_CC
-AM_PROG_CC_STDC
-AC_LIBTOOL_DLOPEN               dnl Enable dlopen support...
-AC_LIBLTDL_CONVENIENCE          dnl make libltdl a convenience lib
+AC_PROG_CC_STDC
 AC_PROG_YACC
 AC_DECL_YYTEXT
 AM_PROG_LEX
 AM_PATH_PYTHON
+AC_LIBTOOL_DLOPEN               dnl Enable dlopen support...
+AC_LIBLTDL_CONVENIENCE          dnl make libltdl a convenience lib
 AC_PROG_LIBTOOL
+
 dnl Replacing AC_PROG_LIBTOOL with AC_CHECK_PROG because LIBTOOL
 dnl was NOT being expanded all the time thus causing things to fail.
 AC_CHECK_PROGS(LIBTOOL, glibtool libtool libtool15 libtool13)
@@ -2554,7 +2555,7 @@
    CC="\$(PRETTY_CC) ${CC}"
 fi
 if test "x${enable_quiet}" = "xyes"; then
-   QUIET_LIBTOOL_OPTS="--tag=CC --quiet"
+   QUIET_LIBTOOL_OPTS="--quiet"
    QUIET_MAKE_OPTS="--quiet"
 fi
 
@@ -2562,7 +2563,7 @@
 AC_MSG_RESULT(Pretty printing of compiler output: ${enable_pretty})
 
 dnl Put the above variables to use
-LIBTOOL="${LIBTOOL} \$(QUIET_LIBTOOL_OPTS)"
+LIBTOOL="${LIBTOOL} --tag=CC \$(QUIET_LIBTOOL_OPTS)"
 MAKE="${MAKE} \$(QUIET_MAKE_OPTS)"
 
 AC_SUBST(CC)
@@ -2723,6 +2724,7 @@
        heartbeat/logrotate.d/Makefile                          \
 ldirectord/Makefile                                            \
        ldirectord/init.d/Makefile                              \
+       ldirectord/init.d/ldirectord                            \
        ldirectord/logrotate.d/Makefile                         \
 membership/Makefile                                            \
        membership/ccm/Makefile                                 \




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

Message: 4
Date: Mon,  7 Aug 2006 12:44:30 -0600 (MDT)
From: linux-ha-cvs@lists.linux-ha.org
Subject: [Linux-ha-cvs] Linux-HA CVS: lib by msoffen from 
To: [EMAIL PROTECTED]
Message-ID: <[EMAIL PROTECTED]>

linux-ha CVS committal

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

Dir     : linux-ha/lib/plugins/quorum


Modified Files:
        .cvsignore 


Log Message:
Added .lo and .la
===================================================================
RCS file: /home/cvs/linux-ha/linux-ha/lib/plugins/quorum/.cvsignore,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- .cvsignore  27 Mar 2006 05:45:29 -0000      1.2
+++ .cvsignore  7 Aug 2006 18:44:30 -0000       1.3
@@ -3,3 +3,5 @@
 Makefile
 Makefile.in
 majority.l*
+*.la
+*.lo




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

Message: 5
Date: Mon,  7 Aug 2006 14:37:07 -0600 (MDT)
From: linux-ha-cvs@lists.linux-ha.org
Subject: [Linux-ha-cvs] Linux-HA CVS: doc by alan from 
To: [EMAIL PROTECTED]
Message-ID: <[EMAIL PROTECTED]>

linux-ha CVS committal

Author  : alan
Host    : 
Project : linux-ha
Module  : doc

Dir     : linux-ha/doc


Modified Files:
        Makefile.am 


Log Message:
Added w3m to a warning error message for building Linux-HA

===================================================================
RCS file: /home/cvs/linux-ha/linux-ha/doc/Makefile.am,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -3 -r1.25 -r1.26
--- Makefile.am 1 May 2006 05:08:23 -0000       1.25
+++ Makefile.am 7 Aug 2006 20:37:06 -0000       1.26
@@ -51,4 +51,4 @@
 
 
 %.txt: %.html
-       if [ "X$(HTML2TXT)" = "X" ]; then echo "Lynx or user-defined HTML2TXT 
required to convert $< to $@" >$@ ; else $(HTML2TXT) -dump $< >$@ ; fi
+       if [ "X$(HTML2TXT)" = "X" ]; then echo "Lynx or w3m or user-defined 
HTML2TXT required to convert $< to $@" >$@ ; else $(HTML2TXT) -dump $< >$@ ; fi




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

_______________________________________________
Linux-ha-cvs mailing list
Linux-ha-cvs@lists.linux-ha.org
http://lists.community.tummy.com/mailman/listinfo/linux-ha-cvs


End of Linux-ha-cvs Digest, Vol 33, Issue 6
*******************************************

Reply via email to