rpms/ctdb/devel .cvsignore, 1.4, 1.5 ctdb.spec, 1.6, 1.7 sources, 1.4, 1.5 0001-added-a-prerequisite-to-make-it-safe-to-use-make-j.patch, 1.1, NONE ctdb-AC_INIT.patch, 1.1, NONE ctdb-ppc64_libdir.patch, 1.1, NONE

Sumit Bose sbose at fedoraproject.org
Fri May 8 09:57:01 UTC 2009


Author: sbose

Update of /cvs/pkgs/rpms/ctdb/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7071

Modified Files:
	.cvsignore ctdb.spec sources 
Removed Files:
	0001-added-a-prerequisite-to-make-it-safe-to-use-make-j.patch 
	ctdb-AC_INIT.patch ctdb-ppc64_libdir.patch 
Log Message:
update to version 1.0.81



Index: .cvsignore
===================================================================
RCS file: /cvs/pkgs/rpms/ctdb/devel/.cvsignore,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -p -r1.4 -r1.5
--- .cvsignore	30 Apr 2009 11:14:38 -0000	1.4
+++ .cvsignore	8 May 2009 09:56:31 -0000	1.5
@@ -1 +1 @@
-ctdb-1.0.79.tar.bz2
+ctdb-1.0.81.tar.bz2


Index: ctdb.spec
===================================================================
RCS file: /cvs/pkgs/rpms/ctdb/devel/ctdb.spec,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -p -r1.6 -r1.7
--- ctdb.spec	30 Apr 2009 12:25:43 -0000	1.6
+++ ctdb.spec	8 May 2009 09:56:31 -0000	1.7
@@ -2,8 +2,8 @@
 
 Summary: A Clustered Database based on Samba's Trivial Database (TDB)
 Name: ctdb
-Version: 1.0.79
-Release: 2%{?dist}
+Version: 1.0.81
+Release: 1%{?dist}
 License: GPLv3+
 Group: System Environment/Daemons
 URL: http://ctdb.samba.org/
@@ -16,10 +16,8 @@ Source0: %{name}-%{version}.tar.bz2
 
 # Fedora specific patch, ctdb should not be enabled by default in the runlevels
 Patch1: ctdb-no_default_runlevel.patch
-# sent to samba-technical: http://lists.samba.org/archive/samba-technical/2009-April/064391.html
-Patch2: ctdb-AC_INIT.patch
-# sent to samba-technical: http://lists.samba.org/archive/samba-technical/2009-April/064396.html
-Patch3: ctdb-ppc64_libdir.patch
+# see http://lists.samba.org/archive/samba-technical/2009-May/064573.html
+Patch2: ctdb-re_fix.patch
 
 Requires: chkconfig coreutils psmisc
 Requires: fileutils sed
@@ -56,7 +54,6 @@ and use CTDB instead.
 %setup -T -D -n ctdb-%{version} -q
 %patch1 -p1
 %patch2 -p1
-%patch3 -p1
 
 %build
 
@@ -124,6 +121,7 @@ fi
 %{_sbindir}/ctdbd
 %{_bindir}/ctdb
 %{_bindir}/smnotify
+%{_bindir}/ping_pong
 %{_bindir}/ctdb_ipmux
 %{_bindir}/ctdb_diagnostics
 %{_bindir}/onnode
@@ -138,6 +136,41 @@ fi
 %{_libdir}/pkgconfig/ctdb.pc
 
 %changelog
+* Fri May 8 2009 Sumit Bose <sbose at redhat.com> - 1.0.81-1
+ - Update to ctdb version 1.0.81
+
+* Fri May 8 2009 : Version 1.0.81
+ - use smbstatus -np instead of smbstatus -n in the 50.samba eventscript
+   since this avoids performing an expensive traverse on the locking and brlock
+   databases.
+ - make ctdb automatically terminate all traverse child processes clusterwide
+   associated to a client application that terminates before the traversal is
+   completed.
+ - From Sumit Bose : fixes to AC_INIT handling.
+ - From Michael Adam, add Tridge's "ping_pong" tool the the ctdb distro since
+   this is very useful for testing the backend filesystem.
+ - From Sumit bose, add support for additional 64 bit platforms.
+ - Add a link from the webpage to Michael Adams SambaXP paper on CTDB.
+
+* Fri May 1 2009 : Version 1.0.80
+ - change init shutdown level to 01 for ctdb so it stops before any of the
+   other services
+ - if we can not pull a database from a remote node during recovery, mark that
+   node as a culprit so it becomes banned
+ - increase the loglevel when we volunteer to drop all ip addresses after
+   beeing in recovery mode for too long. Make this timeout tuneable with
+   "RecoveryDropAllIPs" and have it default to 60 seconds
+ - Add a new flag TDB_NO_NESTING to the tdb layer to prevent nested
+   transactions which ctdb does not use and does not expect. Have ctdb set this
+   flag to prevent nested transactions from occuring.
+ - dont unconditionally kill off ctdb and restrat it on "service ctdb start".
+   Fail "service ctdb start" with an error if ctdb is already running.
+ - Add a new tunable "VerifyRecoveryLock" that can be set to 0 to prevent the
+   main ctdb daemon to verify that the recovery master has locked the reclock
+   file correctly before allowing it to set the recovery mode to active.
+ - fix a cosmetic bug with ctdb statistics where certain counters could become
+   negative.
+
 * Thu Apr 30 2009 Sumit Bose <sbose at redhat.com> - 1.0.79-2
  - fixed a ppc64 build issue
 


Index: sources
===================================================================
RCS file: /cvs/pkgs/rpms/ctdb/devel/sources,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -p -r1.4 -r1.5
--- sources	30 Apr 2009 11:14:39 -0000	1.4
+++ sources	8 May 2009 09:56:31 -0000	1.5
@@ -1 +1 @@
-a0f89dd417ecc231567ed2f56dcdc688  ctdb-1.0.79.tar.bz2
+af35ce05a21275f91fc1e703b3124f12  ctdb-1.0.81.tar.bz2


--- 0001-added-a-prerequisite-to-make-it-safe-to-use-make-j.patch DELETED ---


--- ctdb-AC_INIT.patch DELETED ---


--- ctdb-ppc64_libdir.patch DELETED ---




More information about the scm-commits mailing list