]> git.ipfire.org Git - thirdparty/mdadm.git/commitdiff
Release mdadm-3.2.3 mdadm-3.2.3
authorNeilBrown <neilb@suse.de>
Fri, 23 Dec 2011 03:32:44 +0000 (14:32 +1100)
committerNeilBrown <neilb@suse.de>
Fri, 23 Dec 2011 03:32:44 +0000 (14:32 +1100)
Bug fix release.

ANNOUNCE-3.2.3 [new file with mode: 0644]
ReadMe.c
inventory
makedist
mdadm.8.in
mdadm.spec
mdassemble.8
mdmon.8

diff --git a/ANNOUNCE-3.2.3 b/ANNOUNCE-3.2.3
new file mode 100644 (file)
index 0000000..8a8dba4
--- /dev/null
@@ -0,0 +1,24 @@
+Subject:  ANNOUNCE: mdadm 3.2.3 - A tool for managing Soft RAID under Linux
+
+I am pleased to announce the availability of
+   mdadm version 3.2.3
+
+It is available at the usual places:
+   countrycode=xx.
+   http://www.${countrycode}kernel.org/pub/linux/utils/raid/mdadm/
+and via git at
+   git://neil.brown.name/mdadm
+   http://neil.brown.name/git/mdadm
+
+This release is largely a bugfix release for the 3.2 series with many
+minor fixes with little or no impact.
+
+The largest single area of change is support for reshape of Intel
+IMSM arrays (OnLine Capacity Explansion and Level Migtration).
+Among other fixes, this now has a better chance of surviving if a
+device fails during reshape.
+
+Upgrading is recommended - particularly if you use mdadm for IMSM
+arrays - but not essential.
+
+NeilBrown 23rd December 2011
index 25426d326e2e263606f4590fd7425fcff1f1c1e7..9aa798b7943e1937f21d436b3361110634b79478 100644 (file)
--- a/ReadMe.c
+++ b/ReadMe.c
@@ -24,7 +24,7 @@
 
 #include "mdadm.h"
 
-char Version[] = Name " - v3.2.2 - 17th June 2011\n";
+char Version[] = Name " - v3.2.3 - 23rd December 2011\n";
 
 /*
  * File: ReadMe.c
index aa5cacb01e19f0a4838ee930d0fbc15e221a0778..ff41fc4e0b6125d7f35b5dd29455b6fe56679492 100755 (executable)
--- a/inventory
+++ b/inventory
@@ -12,6 +12,7 @@ ANNOUNCE-3.1.5
 ANNOUNCE-3.2
 ANNOUNCE-3.2.1
 ANNOUNCE-3.2.2
+ANNOUNCE-3.2.3
 Assemble.c
 bitmap.c
 bitmap.h
@@ -79,6 +80,7 @@ probe_roms.h
 pwgr.c
 Query.c
 raid5extend.c
+raid6check.8
 raid6check.c
 ReadMe.c
 README.initramfs
index 0f10f423626020f77d683733d9a4041de725de00..3c99e3a8e3155df99bd8a25175e9029a4b1f632f 100755 (executable)
--- a/makedist
+++ b/makedist
@@ -67,8 +67,18 @@ then
   cp ChangeLog $target/ChangeLog
   if [ " $arg" != " test" ]
   then
-    scp $target/$base master.kernel.org:/pub/linux/utils/raid/mdadm/mdadm-$version.tar.gz
-    scp $target/ANNOUNCE $target/ChangeLog master.kernel.org:/pub/linux/utils/raid/mdadm/
+    echo -n "Confirm signing this release? "
+    read a
+    if [ " $a" != " y" ]; then echo OK - bye. ; exit 1; fi
+    if zcat $target/$base | gpg -ba > $target/$base.sign && gpg -ba $target/ANNOUNCE
+    then
+      kup put $target/$base  $target/$base.sign \
+         /pub/linux/utils/raid/mdadm/mdadm-$version.tar.gz
+      kup put $target/ANNOUNCE $target/ANNOUNCE.asc /pub/linux/utils/raid/mdadm/ANNOUNCE
+    else
+      echo signing failed
+      exit 1
+    fi
   fi
 else
   if [ ! -f $target/$base ] 
index 929aff2d4e99ab979b6259f7090b7c9152ae65fd..27be110fce936c949da7dbf96d8f13a0484e09a4 100644 (file)
@@ -5,7 +5,7 @@
 .\"   the Free Software Foundation; either version 2 of the License, or
 .\"   (at your option) any later version.
 .\" See file COPYING in distribution for details.
-.TH MDADM 8 "" v3.2.2
+.TH MDADM 8 "" v3.2.3
 .SH NAME
 mdadm \- manage MD devices
 .I aka
index c5b8bda77feac613fe8b71af2ef1d0a790f70baa..52c3d6a8a481ebacf591a0c13d5220be077af161 100644 (file)
@@ -1,6 +1,6 @@
 Summary:     mdadm is used for controlling Linux md devices (aka RAID arrays)
 Name:        mdadm
-Version:     3.2.2
+Version:     3.2.3
 Release:     1
 Source:      http://www.kernel.org/pub/linux/utils/raid/mdadm/mdadm-%{version}.tgz
 URL:         http://neil.brown.name/blog/mdadm
@@ -41,6 +41,8 @@ rm -rf $RPM_BUILD_ROOT
 %defattr(-,root,root)
 %doc TODO ChangeLog mdadm.conf-example COPYING
 %{_sbindir}/mdadm
+%{_sbindir}/mdmon
+/lib/udev/rules.d/64-md-raid.rules
 %config(noreplace,missingok)/%{_sysconfdir}/mdadm.conf
 %{_mandir}/man*/md*
 
index 02105246a57e916bf5077532feecbed06effe6bd..824d98b5dabc47ec3579ac7c35f88cc860ade3b4 100644 (file)
@@ -1,5 +1,5 @@
 .\" -*- nroff -*-
-.TH MDASSEMBLE 8 "" v3.2.2
+.TH MDASSEMBLE 8 "" v3.2.3
 .SH NAME
 mdassemble \- assemble MD devices
 .I aka
diff --git a/mdmon.8 b/mdmon.8
index 03b31b862624d3b283714d87e6bfd0ab85f3cc51..8c1ce5f2c9547e327c9daf06398705b3bc0592e0 100644 (file)
--- a/mdmon.8
+++ b/mdmon.8
@@ -1,5 +1,5 @@
 .\" See file COPYING in distribution for details.
-.TH MDMON 8 "" v3.2.2
+.TH MDMON 8 "" v3.2.3
 .SH NAME
 mdmon \- monitor MD external metadata arrays