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: crm by andrew from 
      ([email protected])
   2. Linux-HA CVS: debian by horms from 
      ([email protected])
   3. Linux-HA CVS: debian by horms from 
      ([email protected])


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

Message: 1
Date: Thu, 18 May 2006 15:21:20 -0600 (MDT)
From: [email protected]
Subject: [Linux-ha-cvs] Linux-HA CVS: crm by andrew from 
To: [EMAIL PROTECTED]
Message-ID: <[EMAIL PROTECTED]>

linux-ha CVS committal

Author  : andrew
Host    : 
Project : linux-ha
Module  : crm

Dir     : linux-ha/crm


Modified Files:
        crm-1.0.dtd 


Log Message:
spelling of symmettric

===================================================================
RCS file: /home/cvs/linux-ha/linux-ha/crm/crm-1.0.dtd,v
retrieving revision 1.65
retrieving revision 1.66
diff -u -3 -r1.65 -r1.66
--- crm-1.0.dtd 17 May 2006 12:26:32 -0000      1.65
+++ crm-1.0.dtd 18 May 2006 21:21:19 -0000      1.66
@@ -143,7 +143,7 @@
           to        CDATA #REQUIRED
           action    (start|stop)         'start'
           type      (before|after)       'after'
-          symetrical    (true|1|false|0) 'true'>
+          symmetrical    (true|1|false|0) 'true'>
 <!-- Annotated version -->
 
 <!ELEMENT rsc_colocation (lifetime?)>




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

Message: 2
Date: Thu, 18 May 2006 19:59:35 -0600 (MDT)
From: [email protected]
Subject: [Linux-ha-cvs] Linux-HA CVS: debian by horms from 
To: [EMAIL PROTECTED]
Message-ID: <[EMAIL PROTECTED]>

linux-ha CVS committal

Author  : horms
Host    : 
Project : linux-ha
Module  : debian

Dir     : linux-ha/debian


Modified Files:
        changelog control heartbeat-2.postinst heartbeat-2.preinst 


Log Message:
Debian Packaging Update

2.0.5-2 release
  * Make use of invoke-rc.d (closes: #367761)
  * Update from standards versoin from 3.6.2 to 3.7.2

===================================================================
RCS file: /home/cvs/linux-ha/linux-ha/debian/changelog,v
retrieving revision 1.63
retrieving revision 1.64
diff -u -3 -r1.63 -r1.64
--- changelog   9 May 2006 04:33:46 -0000       1.63
+++ changelog   19 May 2006 01:59:35 -0000      1.64
@@ -1,3 +1,10 @@
+heartbeat-2 (2.0.5-2) unstable; urgency=low
+
+  * Make use of invoke-rc.d (closes: #367761)
+  * Update from standards versoin from 3.6.2 to 3.7.2
+
+ -- Simon Horman <[EMAIL PROTECTED]>  Fri, 19 May 2006 10:39:07 +0900
+
 heartbeat-2 (2.0.5-1) unstable; urgency=low
 
   * New Upstream
===================================================================
RCS file: /home/cvs/linux-ha/linux-ha/debian/control,v
retrieving revision 1.43
retrieving revision 1.44
diff -u -3 -r1.43 -r1.44
--- control     14 Feb 2006 10:06:18 -0000      1.43
+++ control     19 May 2006 01:59:35 -0000      1.44
@@ -4,7 +4,7 @@
 Maintainer: Simon Horman <[EMAIL PROTECTED]>
 Build-Depends: debhelper (>= 4.0.0), libsnmp9-dev, libglib2.0-dev, perl, 
net-tools, netkit-ping | iputils-ping, python, psmisc, modutils, libnet1-dev, 
iproute, libtool, automake1.9 | automaken, libcurl3-openssl-dev, libxml2-dev, 
bison, flex, uuid-dev, libopenipmi-dev (>= 2.0.1), lynx, libbz2-dev, 
zlib1g-dev, uuid-dev, libsensors-dev, libltdl3-dev, swig, openssh-client, 
libgnutls11-dev, python2.3-dev, libpam0g-dev, libncurses5-dev
 Build-Conflicts: automake1.4
-Standards-Version: 3.6.2
+Standards-Version: 3.7.2
 
 Package: ldirectord-2
 Section: admin
===================================================================
RCS file: /home/cvs/linux-ha/linux-ha/debian/heartbeat-2.postinst,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- heartbeat-2.postinst        14 Feb 2006 10:06:18 -0000      1.5
+++ heartbeat-2.postinst        19 May 2006 01:59:35 -0000      1.6
@@ -71,12 +71,20 @@
 
        ldconfig
 
-       /etc/init.d/heartbeat start || true
+       if which invoke-rc.d >/dev/null 2>&1; then
+               invoke-rc.d heartbeat start || true
+       else
+               /etc/init.d/heartbeat start || true
+       fi
     ;;
 
     abort-upgrade|abort-remove|abort-deconfigure)
        # restart heartbeat
-       /etc/init.d/heartbeat start || true
+       if which invoke-rc.d >/dev/null 2>&1; then
+               invoke-rc.d heartbeat start || true
+       else
+               /etc/init.d/heartbeat start || true
+       fi
     ;;
 
     *)
===================================================================
RCS file: /home/cvs/linux-ha/linux-ha/debian/heartbeat-2.preinst,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -3 -r1.4 -r1.5
--- heartbeat-2.preinst 8 Mar 2006 03:27:30 -0000       1.4
+++ heartbeat-2.preinst 19 May 2006 01:59:35 -0000      1.5
@@ -6,7 +6,13 @@
 #
 # see: dh_installdeb(1)
 
-[ -x /etc/init.d/heartbeat ] && /etc/init.d/heartbeat stop
+if [ -x /etc/init.d/heartbeat ]; then
+       if which invoke-rc.d >/dev/null 2>&1; then
+               invoke-rc.d heartbeat stop
+       else
+               /etc/init.d/heartbeat stop
+       fi
+fi
 
 # dh_installdeb will replace this with shell code automatically
 # generated by other debhelper scripts.




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

Message: 3
Date: Thu, 18 May 2006 20:00:26 -0600 (MDT)
From: [email protected]
Subject: [Linux-ha-cvs] Linux-HA CVS: debian by horms from 
To: [EMAIL PROTECTED]
Message-ID: <[EMAIL PROTECTED]>

linux-ha CVS committal

Author  : horms
Host    : 
Project : linux-ha
Module  : debian

Dir     : linux-ha/debian


Modified Files:
      Tag: STABLE_1_2
        changelog control heartbeat.postinst heartbeat.preinst 


Log Message:
Debian Packaging Update

1.2.4-8 release
  * Make use of invoke-rc.d 
    (closes: #346117, #367988)
  * Update from standards version 3.6.2 to 3.7.2

===================================================================
RCS file: /home/cvs/linux-ha/linux-ha/debian/changelog,v
retrieving revision 1.17.2.39
retrieving revision 1.17.2.40
diff -u -3 -r1.17.2.39 -r1.17.2.40
--- changelog   13 Apr 2006 08:29:38 -0000      1.17.2.39
+++ changelog   19 May 2006 02:00:26 -0000      1.17.2.40
@@ -1,3 +1,11 @@
+heartbeat (1.2.4-8) unstable; urgency=low
+
+  * Make use of invoke-rc.d 
+    (closes: #346117, #367988)
+  * Update from standards version 3.6.2 to 3.7.2
+
+ -- Simon Horman <[EMAIL PROTECTED]>  Fri, 19 May 2006 10:05:28 +0900
+
 heartbeat (1.2.4-7) unstable; urgency=low
 
   * Removed duplicate depenancy on adduser
===================================================================
RCS file: /home/cvs/linux-ha/linux-ha/debian/control,v
retrieving revision 1.17.2.27
retrieving revision 1.17.2.28
diff -u -3 -r1.17.2.27 -r1.17.2.28
--- control     14 Mar 2006 23:44:17 -0000      1.17.2.27
+++ control     19 May 2006 02:00:26 -0000      1.17.2.28
@@ -3,7 +3,7 @@
 Priority: optional
 Maintainer: Simon Horman <[EMAIL PROTECTED]>
 Build-Depends: debhelper (>= 4.0.0), libsnmp9-dev, libglib1.2-dev, perl, 
net-tools, netkit-ping | iputils-ping, python, psmisc, modutils, libnet1-dev, 
iproute, libssl-dev, libtool, automake, libcurl3-dev, libxml2-dev, bison, flex, 
libsensors-dev, uuid-dev, openssh-client
-Standards-Version: 3.6.2
+Standards-Version: 3.7.2
 
 Package: ldirectord
 Section: admin
===================================================================
RCS file: /home/cvs/linux-ha/linux-ha/debian/Attic/heartbeat.postinst,v
retrieving revision 1.10.2.9
retrieving revision 1.10.2.10
diff -u -3 -r1.10.2.9 -r1.10.2.10
--- heartbeat.postinst  14 Feb 2006 10:05:10 -0000      1.10.2.9
+++ heartbeat.postinst  19 May 2006 02:00:26 -0000      1.10.2.10
@@ -65,12 +65,20 @@
 
        ldconfig
 
-       /etc/init.d/heartbeat start || true
+       if which invoke-rc.d >/dev/null 2>&1; then
+               invoke-rc.d heartbeat start || true
+       else
+               /etc/init.d/heartbeat start || true
+       fi
     ;;
 
     abort-upgrade|abort-remove|abort-deconfigure)
        # restart heartbeat
-       /etc/init.d/heartbeat start || true
+       if which invoke-rc.d >/dev/null 2>&1; then
+               invoke-rc.d heartbeat start || true
+       else
+               /etc/init.d/heartbeat start || true
+       fi
     ;;
 
     *)
===================================================================
RCS file: /home/cvs/linux-ha/linux-ha/debian/Attic/heartbeat.preinst,v
retrieving revision 1.1.2.5
retrieving revision 1.1.2.6
diff -u -3 -r1.1.2.5 -r1.1.2.6
--- heartbeat.preinst   8 Mar 2006 03:29:43 -0000       1.1.2.5
+++ heartbeat.preinst   19 May 2006 02:00:26 -0000      1.1.2.6
@@ -3,7 +3,13 @@
 #
 # see: dh_installdeb(1)
 
-[ -x /etc/init.d/heartbeat ] && /etc/init.d/heartbeat stop
+if [ -x /etc/init.d/heartbeat ]; then
+       if which invoke-rc.d >/dev/null 2>&1; then
+               invoke-rc.d heartbeat stop
+       else
+               /etc/init.d/heartbeat stop
+       fi
+fi
 
 # dh_installdeb will replace this with shell code automatically
 # generated by other debhelper scripts.




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

_______________________________________________
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 58
********************************************

Reply via email to