cluster-devel.redhat.com archive mirror
 help / color / mirror / Atom feed
* [Cluster-devel] conga clustermon.spec.in.in
@ 2006-08-15 21:27 kupcevic
  0 siblings, 0 replies; 11+ messages in thread
From: kupcevic @ 2006-08-15 21:27 UTC (permalink / raw)
  To: cluster-devel.redhat.com

CVSROOT:	/cvs/cluster
Module name:	conga
Changes by:	kupcevic at sourceware.org	2006-08-15 21:27:45

Modified files:
	.              : clustermon.spec.in.in 

Log message:
	Fix issues blocking package Review for Inclusion

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/conga/clustermon.spec.in.in.diff?cvsroot=cluster&r1=1.3&r2=1.4

--- conga/clustermon.spec.in.in	2006/08/15 04:15:51	1.3
+++ conga/clustermon.spec.in.in	2006/08/15 21:27:45	1.4
@@ -24,7 +24,7 @@
 URL: http://sources.redhat.com/cluster/conga
 
 Group: System Environment/Base
-Summary: cluster snmp agent, cim provider and ricci module - source code
+Summary: Red Hat Enterprise Linux Cluster Suite remote management
 
 Source0: %{name}-%{version}.tar.gz
 Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
@@ -69,17 +69,17 @@
 
 %package -n modcluster
 Group: System Environment/Base
-Summary: Red Hat Enterprise Linux Cluster Suite - ricci module
-URL: http://sources.redhat.com/cluster/conga
 
-Requires: chkconfig initscripts
-Requires: oddjob openssl
-Requires: sed util-linux
+Requires: oddjob dbus openssl
+Requires: initscripts util-linux
+Requires(post): chkconfig initscripts util-linux sed SysVinit
+Requires(preun): chkconfig initscripts
+Requires(postun): initscripts util-linux
 Conflicts: clumon
 Conflicts: ricci-modcluster
 
 %description -n modcluster
-ricci management module for Red Hat Enterprise Linux Cluster Suite.
+ricci management module for Red Hat Enterprise Linux Cluster Suite
 
 
 %files -n modcluster
@@ -91,30 +91,34 @@
 			%{_sbindir}/modclusterd
 			%{_docdir}/modcluster-%{version}/
 
+
 %post -n modcluster
-/sbin/chkconfig --add modclusterd
+/sbin/chkconfig --list modclusterd >/dev/null 2>&1
+if [ "1$?" != "10" ]; then
+   /sbin/chkconfig --add modclusterd
+fi
 /bin/kill -s SIGHUP `cat /var/run/messagebus.pid`
 /sbin/service oddjobd reload > /dev/null 2>&1
+
+# start modclusterd only if not explicitly disabled (in current runlevel)
 RUNS=(`/sbin/runlevel`)
 RUNLEVEL=${RUNS[1]}
 STATE=`/sbin/chkconfig --list modclusterd | sed -e s,.*\\\t$RUNLEVEL:\\\\\(o[nf]f\\\?\\\\\).*,\\\1,`
 if [ "$STATE" = "on" ]; then
-   /sbin/service modclusterd restart > /dev/null 2>&1
+   /sbin/service modclusterd start > /dev/null 2>&1
 fi
 
 %preun -n modcluster
-if [ "$1" = "0" ]; then
-   /sbin/service modclusterd stop > /dev/null 2>&1
+/sbin/service modclusterd stop > /dev/null 2>&1
+if [ "1$1" = "10" ]; then
    /sbin/chkconfig --del modclusterd
 fi
 
 %postun -n modcluster
-/bin/kill -s SIGHUP `cat /var/run/messagebus.pid`
-/sbin/service oddjobd reload > /dev/null 2>&1
-if [ "$1" -ge "1" ]; then
-   /sbin/service modclusterd condrestart > /dev/null 2>&1
+if [ "1$1" = "10" ]; then
+   /bin/kill -s SIGHUP `cat /var/run/messagebus.pid`
+   /sbin/service oddjobd reload > /dev/null 2>&1
 fi
-exit 0
 
 
 
@@ -124,16 +128,16 @@
 
 %package -n cluster-snmp
 Group: System Environment/Base
-Summary: Red Hat Enterprise Linux Cluster Suite - SNMP agent
-URL: http://sources.redhat.com/cluster/conga
 
 Requires: modcluster = %{version}-%{release}
 Requires: net-snmp 
 Requires: oddjob openssl
+Requires(post): initscripts
+Requires(postun): initscripts
 Conflicts: clumon-snmp
 
 %description -n cluster-snmp
-SNMP agent for Red Hat Enterprise Linux Cluster Suite.
+SNMP agent for Red Hat Enterprise Linux Cluster Suite
 
 %files -n cluster-snmp
 %defattr(-,root,root)
@@ -142,23 +146,14 @@
 			%{_datadir}/snmp/mibs/REDHAT-CLUSTER-MIB
 			%{_docdir}/cluster-snmp-%{version}/
 
-%pre -n cluster-snmp
-exit 0
-
 %post -n cluster-snmp
-#/bin/kill -s SIGHUP `cat /var/run/messagebus.pid`
-#/sbin/service oddjobd reload > /dev/null 2>&1
 /sbin/service snmpd condrestart > /dev/null 2>&1
-exit 0
-
-%preun -n cluster-snmp
-exit 0
 
 %postun -n cluster-snmp
-#/bin/kill -s SIGHUP `cat /var/run/messagebus.pid`
-#/sbin/service oddjobd reload > /dev/null 2>&1
-/sbin/service snmpd condrestart > /dev/null 2>&1
-exit 0
+# don't restart snmpd twice on upgrades
+if [ "1$1" = "10" ]; then
+   /sbin/service snmpd condrestart > /dev/null 2>&1
+fi
 
 
 
@@ -169,12 +164,12 @@
 
 %package -n cluster-cim
 Group: System Environment/Base
-Summary: Red Hat Enterprise Linux Cluster Suite - CIM provider
-URL: http://sources.redhat.com/cluster/conga
 
 Requires: modcluster = %{version}-%{release}
 Requires: tog-pegasus 
 Requires: oddjob openssl
+Requires(post): initscripts
+Requires(postun): initscripts
 Conflicts: clumon-cim
 
 %description -n cluster-cim
@@ -185,22 +180,17 @@
 			%{PEGASUS_PROVIDERS_DIR}/libRedHatClusterProvider.so
 			%{_docdir}/cluster-cim-%{version}/
 
-%pre -n cluster-cim
-exit 0
-
 %post -n cluster-cim
-#/bin/kill -s SIGHUP `cat /var/run/messagebus.pid`
-#/sbin/service oddjobd reload > /dev/null 2>&1
 /sbin/service tog-pegasus condrestart > /dev/null 2>&1
-exit 0
-
-%preun -n cluster-cim
+# pegasus might not be running, don't fail %post
 exit 0
 
 %postun -n cluster-cim
-#/bin/kill -s SIGHUP `cat /var/run/messagebus.pid`
-#/sbin/service oddjobd reload > /dev/null 2>&1
-/sbin/service tog-pegasus condrestart > /dev/null 2>&1
+# don't restart pegasus twice on upgrades
+if [ "1$1" = "10" ]; then
+   /sbin/service tog-pegasus condrestart > /dev/null 2>&1
+fi
+# pegasus might not be running, don't fail %postun
 exit 0
 
 
@@ -213,6 +203,9 @@
 
 
 %changelog
+* Tue Aug 15 2006 Stanko Kupcevic <kupcevic@redhat.com> 0.8-11.6
+- Implement support for Cluster Suite 5
+
 * Wed Aug 09 2006 Stanko Kupcevic <kupcevic@redhat.com> 0.8-11
-- Rebirth: separate clustermon.srpm (modcluster, cluster-snmp and 
+- Spinoff: separate clustermon.srpm (modcluster, cluster-snmp and 
    cluster-cim) from conga.srpm



^ permalink raw reply	[flat|nested] 11+ messages in thread

* [Cluster-devel] conga clustermon.spec.in.in
@ 2006-08-15 21:40 kupcevic
  0 siblings, 0 replies; 11+ messages in thread
From: kupcevic @ 2006-08-15 21:40 UTC (permalink / raw)
  To: cluster-devel.redhat.com

CVSROOT:	/cvs/cluster
Module name:	conga
Changes by:	kupcevic at sourceware.org	2006-08-15 21:40:44

Modified files:
	.              : clustermon.spec.in.in 

Log message:
	Add Summary fields

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/conga/clustermon.spec.in.in.diff?cvsroot=cluster&r1=1.4&r2=1.5

--- conga/clustermon.spec.in.in	2006/08/15 21:27:45	1.4
+++ conga/clustermon.spec.in.in	2006/08/15 21:40:44	1.5
@@ -69,6 +69,7 @@
 
 %package -n modcluster
 Group: System Environment/Base
+Summary: Red Hat Enterprise Linux Cluster Suite remote management
 
 Requires: oddjob dbus openssl
 Requires: initscripts util-linux
@@ -128,6 +129,7 @@
 
 %package -n cluster-snmp
 Group: System Environment/Base
+Summary: Red Hat Enterprise Linux Cluster Suite remote management
 
 Requires: modcluster = %{version}-%{release}
 Requires: net-snmp 
@@ -164,6 +166,7 @@
 
 %package -n cluster-cim
 Group: System Environment/Base
+Summary: Red Hat Enterprise Linux Cluster Suite remote management
 
 Requires: modcluster = %{version}-%{release}
 Requires: tog-pegasus 



^ permalink raw reply	[flat|nested] 11+ messages in thread

* [Cluster-devel] conga clustermon.spec.in.in
@ 2006-08-16  3:02 kupcevic
  0 siblings, 0 replies; 11+ messages in thread
From: kupcevic @ 2006-08-16  3:02 UTC (permalink / raw)
  To: cluster-devel.redhat.com

CVSROOT:	/cvs/cluster
Module name:	conga
Changes by:	kupcevic at sourceware.org	2006-08-16 03:02:26

Modified files:
	.              : clustermon.spec.in.in 

Log message:
	Add periods (dots) to the and of descriptions

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/conga/clustermon.spec.in.in.diff?cvsroot=cluster&r1=1.5&r2=1.6

--- conga/clustermon.spec.in.in	2006/08/15 21:40:44	1.5
+++ conga/clustermon.spec.in.in	2006/08/16 03:02:26	1.6
@@ -35,7 +35,7 @@
 
 %description
 This package contains source code of 
-Red Hat Enterprise Linux Cluster Suite ricci/SNMP/CIM module/agent/provider. 
+Red Hat Enterprise Linux Cluster Suite ricci/SNMP/CIM module/agent/provider.
 
 
 %prep
@@ -80,7 +80,7 @@
 Conflicts: ricci-modcluster
 
 %description -n modcluster
-ricci management module for Red Hat Enterprise Linux Cluster Suite
+ricci management module for Red Hat Enterprise Linux Cluster Suite.
 
 
 %files -n modcluster
@@ -105,7 +105,7 @@
 RUNS=(`/sbin/runlevel`)
 RUNLEVEL=${RUNS[1]}
 STATE=`/sbin/chkconfig --list modclusterd | sed -e s,.*\\\t$RUNLEVEL:\\\\\(o[nf]f\\\?\\\\\).*,\\\1,`
-if [ "$STATE" = "on" ]; then
+if [ "1$STATE" = "1on" ]; then
    /sbin/service modclusterd start > /dev/null 2>&1
 fi
 
@@ -139,7 +139,7 @@
 Conflicts: clumon-snmp
 
 %description -n cluster-snmp
-SNMP agent for Red Hat Enterprise Linux Cluster Suite
+SNMP agent for Red Hat Enterprise Linux Cluster Suite.
 
 %files -n cluster-snmp
 %defattr(-,root,root)
@@ -176,7 +176,7 @@
 Conflicts: clumon-cim
 
 %description -n cluster-cim
-CIM provider for Red Hat Enterprise Linux Cluster Suite.
+CIM provider for Red Hat Enterprise Linux Cluster Suite. 
 
 %files -n cluster-cim
 %defattr(-,root,root)



^ permalink raw reply	[flat|nested] 11+ messages in thread

* [Cluster-devel] conga clustermon.spec.in.in
@ 2006-08-17 19:17 kupcevic
  0 siblings, 0 replies; 11+ messages in thread
From: kupcevic @ 2006-08-17 19:17 UTC (permalink / raw)
  To: cluster-devel.redhat.com

CVSROOT:	/cvs/cluster
Module name:	conga
Changes by:	kupcevic at sourceware.org	2006-08-17 19:17:50

Modified files:
	.              : clustermon.spec.in.in 

Log message:
	- Adding Group fields back, removed after Review comment (won't build without them)

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/conga/clustermon.spec.in.in.diff?cvsroot=cluster&r1=1.8&r2=1.9

--- conga/clustermon.spec.in.in	2006/08/17 19:12:54	1.8
+++ conga/clustermon.spec.in.in	2006/08/17 19:17:50	1.9
@@ -62,6 +62,7 @@
 
 
 %package -n modcluster
+Group: System Environment/Base
 Summary: Red Hat Enterprise Linux Cluster Suite - remote management
 
 Requires: oddjob dbus openssl
@@ -116,6 +117,7 @@
 
 
 %package -n cluster-snmp
+Group: System Environment/Base
 Summary: Red Hat Enterprise Linux Cluster Suite - SNMP agent
 
 Requires: modcluster = %{version}-%{release}
@@ -152,6 +154,7 @@
 
 
 %package -n cluster-cim
+Group: System Environment/Base
 Summary: Red Hat Enterprise Linux Cluster Suite - CIM provider
 
 Requires: modcluster = %{version}-%{release}



^ permalink raw reply	[flat|nested] 11+ messages in thread

* [Cluster-devel] conga clustermon.spec.in.in
@ 2006-08-17 22:25 kupcevic
  0 siblings, 0 replies; 11+ messages in thread
From: kupcevic @ 2006-08-17 22:25 UTC (permalink / raw)
  To: cluster-devel.redhat.com

CVSROOT:	/cvs/cluster
Module name:	conga
Changes by:	kupcevic at sourceware.org	2006-08-17 22:25:13

Modified files:
	.              : clustermon.spec.in.in 

Log message:
	minor tune to specfile

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/conga/clustermon.spec.in.in.diff?cvsroot=cluster&r1=1.9&r2=1.10

--- conga/clustermon.spec.in.in	2006/08/17 19:17:50	1.9
+++ conga/clustermon.spec.in.in	2006/08/17 22:25:12	1.10
@@ -24,7 +24,7 @@
 URL: http://sources.redhat.com/cluster/conga
 
 Group: System Environment/Base
-Summary: Red Hat Enterprise Linux Cluster Suite remote management
+Summary: Monitoring and management of Red Hat Enterprise Linux Cluster Suite
 
 Source0: %{name}-%{version}.tar.gz
 Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
@@ -67,7 +67,7 @@
 
 Requires: oddjob dbus openssl
 Requires: initscripts util-linux
-Requires(post): chkconfig initscripts util-linux sed SysVinit
+Requires(post): chkconfig initscripts util-linux
 Requires(preun): chkconfig initscripts
 Requires(postun): initscripts util-linux
 Conflicts: clumon
@@ -88,25 +88,22 @@
 
 
 %post -n modcluster
-/sbin/chkconfig --list modclusterd >/dev/null 2>&1
-if [ "1$?" != "10" ]; then
-   /sbin/chkconfig --add modclusterd
-fi
+/sbin/chkconfig --add modclusterd
 /bin/kill -s SIGHUP `cat /var/run/messagebus.pid` > /dev/null 2>&1
 /sbin/service oddjobd reload > /dev/null 2>&1
 
 %preun -n modcluster
-if [ "1$1" == "10" ]; then
+if [ "$1" == "0" ]; then
    /sbin/service modclusterd stop > /dev/null 2>&1
    /sbin/chkconfig --del modclusterd
 fi
 
 %postun -n modcluster
-if [ "1$1" == "10" ]; then
+if [ "$1" == "0" ]; then
    /bin/kill -s SIGHUP `cat /var/run/messagebus.pid` > /dev/null 2>&1
    /sbin/service oddjobd reload > /dev/null 2>&1
 fi
-if [ "1$1" == "11" ]; then
+if [ "$1" == "1" ]; then
    /sbin/service modclusterd condrestart > /dev/null 2>&1
 fi
 
@@ -142,7 +139,7 @@
 
 %postun -n cluster-snmp
 # don't restart snmpd twice on upgrades
-if [ "1$1" == "10" ]; then
+if [ "$1" == "0" ]; then
    /sbin/service snmpd condrestart > /dev/null 2>&1
 fi
 
@@ -179,7 +176,7 @@
 
 %postun -n cluster-cim
 # don't restart pegasus twice on upgrades
-if [ "1$1" == "10" ]; then
+if [ "$1" == "0" ]; then
    /sbin/service tog-pegasus condrestart > /dev/null 2>&1
 fi
 # pegasus might not be running, don't fail %postun



^ permalink raw reply	[flat|nested] 11+ messages in thread

* [Cluster-devel] conga clustermon.spec.in.in
@ 2007-06-27  7:49 rmccabe
  0 siblings, 0 replies; 11+ messages in thread
From: rmccabe @ 2007-06-27  7:49 UTC (permalink / raw)
  To: cluster-devel.redhat.com

CVSROOT:	/cvs/cluster
Module name:	conga
Branch: 	RHEL5
Changes by:	rmccabe at sourceware.org	2007-06-27 07:49:06

Modified files:
	.              : clustermon.spec.in.in 

Log message:
	changelog update

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/conga/clustermon.spec.in.in.diff?cvsroot=cluster&only_with_tag=RHEL5&r1=1.18.2.18&r2=1.18.2.19

--- conga/clustermon.spec.in.in	2007/06/27 07:43:17	1.18.2.18
+++ conga/clustermon.spec.in.in	2007/06/27 07:49:06	1.18.2.19
@@ -196,6 +196,8 @@
 
 * Wed Jun 27 2007 Ryan McCabe <rmccabe@redhat.com> 0.10.0-1
 - Performance improvements.
+- Make the clustermon init script more LSB-compliant
+- Related: bz243701
 
 * Wed Apr 11 2007 Ryan McCabe <rmccabe@redhat.com> 0.9.2-5
 - Version bump



^ permalink raw reply	[flat|nested] 11+ messages in thread

* [Cluster-devel] conga clustermon.spec.in.in
@ 2007-10-10 20:09 rmccabe
  0 siblings, 0 replies; 11+ messages in thread
From: rmccabe @ 2007-10-10 20:09 UTC (permalink / raw)
  To: cluster-devel.redhat.com

CVSROOT:	/cvs/cluster
Module name:	conga
Changes by:	rmccabe at sourceware.org	2007-10-10 20:09:47

Modified files:
	.              : clustermon.spec.in.in 

Log message:
	Update changelog

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/conga/clustermon.spec.in.in.diff?cvsroot=cluster&r1=1.33&r2=1.34

--- conga/clustermon.spec.in.in	2007/10/09 19:58:29	1.33
+++ conga/clustermon.spec.in.in	2007/10/10 20:09:46	1.34
@@ -187,7 +187,7 @@
 
 %changelog
 * Wed Sep 19 2007 Ryan McCabe <rmccabe@redhat.com> 0.12.0-1
-
+- Fixed bz317541 (Conga displays quorum status incorrectly when qdisk is used)
 
 * Mon Aug 20 2007 Ryan McCabe <rmccabe@redhat.com> 0.10.0-5
 - Fixed bz253341 (failure to start cluster service which had been modifed for correction)



^ permalink raw reply	[flat|nested] 11+ messages in thread

* [Cluster-devel] conga clustermon.spec.in.in
@ 2008-01-21 23:21 rmccabe
  0 siblings, 0 replies; 11+ messages in thread
From: rmccabe @ 2008-01-21 23:21 UTC (permalink / raw)
  To: cluster-devel.redhat.com

CVSROOT:	/cvs/cluster
Module name:	conga
Branch: 	RHEL5
Changes by:	rmccabe at sourceware.org	2008-01-21 23:21:47

Modified files:
	.              : clustermon.spec.in.in 

Log message:
	Remove extra .1 in the version number

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/conga/clustermon.spec.in.in.diff?cvsroot=cluster&only_with_tag=RHEL5&r1=1.18.2.28&r2=1.18.2.29

--- conga/clustermon.spec.in.in	2008/01/21 23:17:25	1.18.2.28
+++ conga/clustermon.spec.in.in	2008/01/21 23:21:47	1.18.2.29
@@ -17,7 +17,7 @@
 
 Name: clustermon
 Version: @@VERS@@
-Release: @@REL@@%{?dist}.1
+Release: @@REL@@%{?dist}
 License: GPL
 URL: http://sources.redhat.com/cluster/conga
 



^ permalink raw reply	[flat|nested] 11+ messages in thread

* [Cluster-devel] conga clustermon.spec.in.in
@ 2008-02-20 17:23 rmccabe
  0 siblings, 0 replies; 11+ messages in thread
From: rmccabe @ 2008-02-20 17:23 UTC (permalink / raw)
  To: cluster-devel.redhat.com

CVSROOT:	/cvs/cluster
Module name:	conga
Changes by:	rmccabe at sourceware.org	2008-02-20 17:23:54

Modified files:
	.              : clustermon.spec.in.in 

Log message:
	Kill a couple of rpmlint warnings

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/conga/clustermon.spec.in.in.diff?cvsroot=cluster&r1=1.36&r2=1.37

--- conga/clustermon.spec.in.in	2008/02/20 17:07:55	1.36
+++ conga/clustermon.spec.in.in	2008/02/20 17:23:54	1.37
@@ -172,7 +172,7 @@
 			%{_docdir}/cluster-cim-%{version}/
 
 %post -n cluster-cim
-# pegasus might not be running, don't fail %post
+# pegasus might not be running, don't fail
 /sbin/service tog-pegasus condrestart >&/dev/null
 exit 0
 
@@ -181,7 +181,7 @@
 if [ "$1" == "0" ]; then
 	/sbin/service tog-pegasus condrestart >&/dev/null
 fi
-# pegasus might not be running, don't fail %postun
+# pegasus might not be running, don't fail
 exit 0
 
 



^ permalink raw reply	[flat|nested] 11+ messages in thread

* [Cluster-devel] conga clustermon.spec.in.in
@ 2008-04-23 19:27 rmccabe
  0 siblings, 0 replies; 11+ messages in thread
From: rmccabe @ 2008-04-23 19:27 UTC (permalink / raw)
  To: cluster-devel.redhat.com

CVSROOT:	/cvs/cluster
Module name:	conga
Changes by:	rmccabe at sourceware.org	2008-04-23 19:27:25

Modified files:
	.              : clustermon.spec.in.in 

Log message:
	Remove bogus libvirt dependency for cluster-snmp per feist's suggestion

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/conga/clustermon.spec.in.in.diff?cvsroot=cluster&r1=1.41&r2=1.42

--- conga/clustermon.spec.in.in	2008/03/28 01:17:11	1.41
+++ conga/clustermon.spec.in.in	2008/04/23 19:27:25	1.42
@@ -119,7 +119,7 @@
 Summary: Red Hat Enterprise Linux Cluster Suite - SNMP agent
 
 Requires: modcluster = %{version}-%{release}
-Requires: net-snmp libvirt
+Requires: net-snmp
 Requires: oddjob openssl
 Requires(post): initscripts
 Requires(postun): initscripts



^ permalink raw reply	[flat|nested] 11+ messages in thread

* [Cluster-devel] conga clustermon.spec.in.in
@ 2008-07-28 18:09 rmccabe
  0 siblings, 0 replies; 11+ messages in thread
From: rmccabe @ 2008-07-28 18:09 UTC (permalink / raw)
  To: cluster-devel.redhat.com

CVSROOT:	/cvs/cluster
Module name:	conga
Branch: 	RHEL5
Changes by:	rmccabe at sourceware.org	2008-07-28 18:09:43

Modified files:
	.              : clustermon.spec.in.in 

Log message:
	bump version in the changelog

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/conga/clustermon.spec.in.in.diff?cvsroot=cluster&only_with_tag=RHEL5&r1=1.18.2.39&r2=1.18.2.40

--- conga/clustermon.spec.in.in	2008/07/28 17:49:44	1.18.2.39
+++ conga/clustermon.spec.in.in	2008/07/28 18:09:43	1.18.2.40
@@ -193,7 +193,7 @@
 
 
 %changelog
-* Thu Apr 10 2008 Ryan McCabe <rmccabe@redhat.com> 0.12.0-8
+* Thu Apr 10 2008 Ryan McCabe <rmccabe@redhat.com> 0.12.1-1
 - Fix bz441947 (cluster-snmp dlopen failure)
 
 * Thu Mar 27 2008 Ryan McCabe <rmccabe@redhat.com> 0.12.0-7



^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2008-07-28 18:09 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-08-15 21:40 [Cluster-devel] conga clustermon.spec.in.in kupcevic
  -- strict thread matches above, loose matches on Subject: below --
2008-07-28 18:09 rmccabe
2008-04-23 19:27 rmccabe
2008-02-20 17:23 rmccabe
2008-01-21 23:21 rmccabe
2007-10-10 20:09 rmccabe
2007-06-27  7:49 rmccabe
2006-08-17 22:25 kupcevic
2006-08-17 19:17 kupcevic
2006-08-16  3:02 kupcevic
2006-08-15 21:27 kupcevic

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).