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: include by andrew from
([email protected])
2. Linux-HA CVS: linux-ha by andrew from
([email protected])
3. Linux-HA CVS: include by andrew from
([email protected])
4. Linux-HA CVS: lib by andrew from
([email protected])
5. Linux-HA CVS: include by andrew from
([email protected])
----------------------------------------------------------------------
Message: 1
Date: Wed, 7 Jun 2006 04:18:05 -0600 (MDT)
From: [email protected]
Subject: [Linux-ha-cvs] Linux-HA CVS: include by andrew from
To: [EMAIL PROTECTED]
Message-ID: <[EMAIL PROTECTED]>
linux-ha CVS committal
Author : andrew
Host :
Project : linux-ha
Module : include
Dir : linux-ha/include/crm/pengine
Log Message:
Directory /home/cvs/linux-ha/linux-ha/include/crm/pengine added to the
repository
------------------------------
Message: 2
Date: Wed, 7 Jun 2006 06:46:55 -0600 (MDT)
From: [email protected]
Subject: [Linux-ha-cvs] Linux-HA CVS: linux-ha by andrew from
To: [EMAIL PROTECTED]
Message-ID: <[EMAIL PROTECTED]>
linux-ha CVS committal
Author : andrew
Host :
Module : linux-ha
Dir : linux-ha
Modified Files:
configure.in
Log Message:
Split the PE into three distinct parts:
- a library for processing rules
- a library for determining the current cluster status
- and a library for calculating the next cluster state
Most tools (such as crm_mon) will only need to use the 2nd library
The first library can be used by the crmd to parse its options (without
needing the rest of the PE)
===================================================================
RCS file: /home/cvs/linux-ha/linux-ha/configure.in,v
retrieving revision 1.527
retrieving revision 1.528
diff -u -3 -r1.527 -r1.528
--- configure.in 1 Jun 2006 08:44:40 -0000 1.527
+++ configure.in 7 Jun 2006 12:46:55 -0000 1.528
@@ -10,7 +10,7 @@
AC_INIT(heartbeat.spec.in)
AC_CONFIG_AUX_DIR(.)
-AC_REVISION($Revision: 1.527 $) dnl cvs revision
+AC_REVISION($Revision: 1.528 $) dnl cvs revision
AC_CANONICAL_HOST
@@ -2585,6 +2585,7 @@
include/clplumbing/Makefile \
include/crm/Makefile \
include/crm/common/Makefile \
+ include/crm/pengine/Makefile \
include/lrm/Makefile \
include/mgmt/Makefile \
include/ocf/Makefile \
@@ -2607,6 +2608,7 @@
lib/crm/Makefile \
lib/crm/common/Makefile \
lib/crm/cib/Makefile \
+ lib/crm/pengine/Makefile \
lib/crm/transition/Makefile \
lib/lrm/Makefile \
lib/mgmt/Makefile \
------------------------------
Message: 3
Date: Wed, 7 Jun 2006 06:46:55 -0600 (MDT)
From: [email protected]
Subject: [Linux-ha-cvs] Linux-HA CVS: include by andrew from
To: [EMAIL PROTECTED]
Message-ID: <[EMAIL PROTECTED]>
linux-ha CVS committal
Author : andrew
Host :
Project : linux-ha
Module : include
Dir : linux-ha/include/crm
Modified Files:
Makefile.am
Log Message:
Split the PE into three distinct parts:
- a library for processing rules
- a library for determining the current cluster status
- and a library for calculating the next cluster state
Most tools (such as crm_mon) will only need to use the 2nd library
The first library can be used by the crmd to parse its options (without
needing the rest of the PE)
===================================================================
RCS file: /home/cvs/linux-ha/linux-ha/include/crm/Makefile.am,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -3 -r1.4 -r1.5
--- Makefile.am 14 Feb 2006 12:10:30 -0000 1.4
+++ Makefile.am 7 Jun 2006 12:46:55 -0000 1.5
@@ -21,4 +21,4 @@
include_HEADERS = crm.h cib.h msg_xml.h transition.h
-SUBDIRS = common
+SUBDIRS = common pengine
------------------------------
Message: 4
Date: Wed, 7 Jun 2006 06:46:55 -0600 (MDT)
From: [email protected]
Subject: [Linux-ha-cvs] Linux-HA CVS: lib by andrew from
To: [EMAIL PROTECTED]
Message-ID: <[EMAIL PROTECTED]>
linux-ha CVS committal
Author : andrew
Host :
Project : linux-ha
Module : lib
Dir : linux-ha/lib/crm
Modified Files:
Makefile.am
Log Message:
Split the PE into three distinct parts:
- a library for processing rules
- a library for determining the current cluster status
- and a library for calculating the next cluster state
Most tools (such as crm_mon) will only need to use the 2nd library
The first library can be used by the crmd to parse its options (without
needing the rest of the PE)
===================================================================
RCS file: /home/cvs/linux-ha/linux-ha/lib/crm/Makefile.am,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -3 -r1.4 -r1.5
--- Makefile.am 14 Feb 2006 12:10:30 -0000 1.4
+++ Makefile.am 7 Jun 2006 12:46:55 -0000 1.5
@@ -18,5 +18,5 @@
MAINTAINERCLEANFILES = Makefile.in
## Subdirectories...
-SUBDIRS = common cib transition
-DIST_SUBDIRS = common cib transition
+SUBDIRS = common pengine cib transition
+DIST_SUBDIRS = common pengine cib transition
------------------------------
Message: 5
Date: Wed, 7 Jun 2006 06:46:55 -0600 (MDT)
From: [email protected]
Subject: [Linux-ha-cvs] Linux-HA CVS: include by andrew from
To: [EMAIL PROTECTED]
Message-ID: <[EMAIL PROTECTED]>
linux-ha CVS committal
Author : andrew
Host :
Project : linux-ha
Module : include
Dir : linux-ha/include/crm/pengine
Added Files:
Makefile.am common.h complex.h rules.h status.h
Log Message:
Split the PE into three distinct parts:
- a library for processing rules
- a library for determining the current cluster status
- and a library for calculating the next cluster state
Most tools (such as crm_mon) will only need to use the 2nd library
The first library can be used by the crmd to parse its options (without
needing the rest of the PE)
------------------------------
_______________________________________________
Linux-ha-cvs mailing list
[email protected]
http://lists.community.tummy.com/mailman/listinfo/linux-ha-cvs
End of Linux-ha-cvs Digest, Vol 31, Issue 19
********************************************