2007-04-17 00:17:54 +00:00
|
|
|
Summary: The mdadm program controls Linux md devices (software RAID arrays)
|
2004-09-09 08:24:56 +00:00
|
|
|
Name: mdadm
|
2010-02-17 19:25:15 +00:00
|
|
|
Version: 3.1.1
|
2010-02-18 06:42:33 +00:00
|
|
|
Release: 0.gcd9a8b5.2%{?dist}
|
2010-02-17 19:25:15 +00:00
|
|
|
Source: http://www.kernel.org/pub/linux/utils/raid/mdadm/mdadm-%{version}-gcd9a8b5.tar.bz2
|
2004-09-09 08:24:56 +00:00
|
|
|
Source1: mdmonitor.init
|
2009-03-18 18:25:56 +00:00
|
|
|
Source2: raid-check
|
2009-03-18 18:55:49 +00:00
|
|
|
Source3: mdadm.rules
|
2009-07-24 17:43:39 +00:00
|
|
|
Source4: mdadm-raid-check-sysconfig
|
2009-03-18 18:25:56 +00:00
|
|
|
Patch1: mdadm-2.5.2-static.patch
|
2010-02-17 19:25:15 +00:00
|
|
|
Patch2: mdadm-3.1.1-warn.patch
|
2010-02-18 06:42:33 +00:00
|
|
|
Patch3: mdadm-3.1.1-endian.patch
|
2008-06-26 23:48:40 +00:00
|
|
|
URL: http://www.kernel.org/pub/linux/utils/raid/mdadm/
|
|
|
|
License: GPLv2+
|
2004-09-09 08:25:03 +00:00
|
|
|
Group: System Environment/Base
|
2007-04-11 15:34:23 +00:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
2005-05-16 21:36:00 +00:00
|
|
|
Obsoletes: mdctl,raidtools
|
2007-04-11 15:34:23 +00:00
|
|
|
Requires(post): /sbin/service, /sbin/chkconfig
|
|
|
|
Requires(preun): /sbin/service, /sbin/chkconfig
|
|
|
|
Requires(postun): /sbin/service
|
2009-03-18 18:25:56 +00:00
|
|
|
Requires: udev
|
2009-11-05 21:34:56 +00:00
|
|
|
BuildRequires: glibc-static
|
2004-09-09 08:24:56 +00:00
|
|
|
|
|
|
|
%description
|
2007-04-17 00:17:54 +00:00
|
|
|
The mdadm program is used to create, manage, and monitor Linux MD (software
|
|
|
|
RAID) devices. As such, it provides similar functionality to the raidtools
|
2004-09-09 08:24:56 +00:00
|
|
|
package. However, mdadm is a single program, and it can perform
|
|
|
|
almost all functions without a configuration file, though a configuration
|
|
|
|
file can be used to help with some common tasks.
|
|
|
|
|
|
|
|
%prep
|
2009-06-29 19:22:06 +00:00
|
|
|
%setup -q
|
2009-03-18 18:25:56 +00:00
|
|
|
%patch1 -p1 -b .static
|
2010-02-17 19:25:15 +00:00
|
|
|
%patch2 -p1 -b .warn
|
2010-02-18 06:42:33 +00:00
|
|
|
%patch3 -p1 -b .endian
|
2007-01-26 19:17:05 +00:00
|
|
|
|
2004-09-09 08:24:56 +00:00
|
|
|
%build
|
2009-02-13 14:41:23 +00:00
|
|
|
make %{?_smp_mflags} CXFLAGS="$RPM_OPT_FLAGS -fno-strict-aliasing" SYSCONFDIR="%{_sysconfdir}" mdadm.static mdadm mdmon
|
2004-09-09 08:24:56 +00:00
|
|
|
|
|
|
|
%install
|
2009-07-24 17:43:39 +00:00
|
|
|
rm -rf %{buildroot}
|
|
|
|
make DESTDIR=%{buildroot} MANDIR=%{_mandir} BINDIR=/sbin install install-static
|
|
|
|
rm -f %{buildroot}/lib/udev/rules.d/*
|
|
|
|
install -Dp -m 755 %{SOURCE1} %{buildroot}%{_initrddir}/mdmonitor
|
|
|
|
install -Dp -m 755 %{SOURCE2} %{buildroot}%{_sysconfdir}/cron.weekly/99-raid-check
|
|
|
|
install -Dp -m 644 %{SOURCE3} %{buildroot}/lib/udev/rules.d/65-md-incremental.rules
|
|
|
|
install -Dp -m 644 %{SOURCE4} %{buildroot}%{_sysconfdir}/sysconfig/raid-check
|
|
|
|
mkdir -p -m 700 %{buildroot}/var/run/mdadm
|
2009-11-05 21:30:16 +00:00
|
|
|
ln -s mdadm.8.gz %{buildroot}%{_mandir}/man8/mdadm.static.8.gz
|
2004-09-09 08:24:56 +00:00
|
|
|
|
|
|
|
%clean
|
2009-07-24 17:43:39 +00:00
|
|
|
rm -rf %{buildroot}
|
2004-09-09 08:24:56 +00:00
|
|
|
|
|
|
|
%post
|
2007-03-31 13:03:11 +00:00
|
|
|
if [ "$1" = 1 ]; then
|
|
|
|
/sbin/chkconfig --add mdmonitor
|
|
|
|
fi
|
2004-09-09 08:24:56 +00:00
|
|
|
|
|
|
|
%preun
|
|
|
|
if [ "$1" = 0 ]; then
|
2004-09-09 08:27:01 +00:00
|
|
|
service mdmonitor stop > /dev/null 2>&1 ||:
|
2004-09-09 08:24:56 +00:00
|
|
|
/sbin/chkconfig --del mdmonitor
|
|
|
|
fi
|
|
|
|
|
|
|
|
%postun
|
|
|
|
if [ "$1" -ge "1" ]; then
|
|
|
|
service mdmonitor condrestart > /dev/null 2>&1
|
|
|
|
fi
|
|
|
|
|
|
|
|
%files
|
2007-04-17 00:17:54 +00:00
|
|
|
%defattr(-,root,root,-)
|
2007-04-11 15:34:23 +00:00
|
|
|
%doc TODO ChangeLog mdadm.conf-example COPYING misc/*
|
2009-03-18 18:25:56 +00:00
|
|
|
/lib/udev/rules.d/*
|
2004-09-09 08:27:01 +00:00
|
|
|
/sbin/*
|
2004-09-09 08:24:56 +00:00
|
|
|
%{_initrddir}/*
|
|
|
|
%{_mandir}/man*/md*
|
2009-03-18 18:25:56 +00:00
|
|
|
%{_sysconfdir}/cron.weekly/*
|
2009-07-24 17:43:39 +00:00
|
|
|
%config(noreplace) %{_sysconfdir}/sysconfig/*
|
2004-09-09 08:29:29 +00:00
|
|
|
%attr(0700,root,root) %dir /var/run/mdadm
|
2004-09-09 08:24:56 +00:00
|
|
|
|
|
|
|
%changelog
|
2010-02-18 06:42:33 +00:00
|
|
|
* Thu Feb 18 2010 Doug Ledford <dledford@redhat.com> - 3.1.1-0.gcd9a8b5.2
|
|
|
|
- Fix s390/ppc64 UUID byte swap issue
|
|
|
|
|
2010-02-17 19:25:15 +00:00
|
|
|
* Wed Feb 17 2010 Doug Ledford <dledford@redhat.com> - 3.1.1-0.gcd9a8b5.1
|
|
|
|
- Update to head of upstream git repo, which contains a significant number
|
|
|
|
of bug fixes we need
|
|
|
|
|
2010-01-15 21:38:45 +00:00
|
|
|
* Fri Jan 15 2010 Doug Ledford <dledford@redhat.com> - 3.0.3-3
|
|
|
|
- Fix crash when AUTO keyword is in mdadm.conf (bz552342)
|
|
|
|
|
2009-12-01 22:46:16 +00:00
|
|
|
* Tue Dec 01 2009 Doug Ledford <dledford@redhat.com> - 3.0.3-2
|
|
|
|
- Minor tweak to init script for LSB compliance (bz527957)
|
|
|
|
|
2009-11-05 21:30:16 +00:00
|
|
|
* Wed Nov 04 2009 Doug Ledford <dledford@redhat.com> - 3.0.3-1
|
|
|
|
- New upstream release 3.0.3 (bz523320, bz527281)
|
|
|
|
- Update a couple internal patches
|
|
|
|
- Drop a patch in that was in Neil's tree for 3.0.3 that we had pulled for
|
|
|
|
immediate use to resolve a bug
|
|
|
|
- Drop the endian patch because it no longer applied cleanly and all attempts
|
|
|
|
to reproduce the original problem as reported in bz510605 failed, even up
|
|
|
|
to and including downloading the specific package that was reported as
|
|
|
|
failing in that bug and trying to reproduce with it on both ppc and ppc64
|
|
|
|
hardware and with both ppc and ppc64 versions on the 64bit hardware.
|
|
|
|
Without a reproducer, it is impossible to determine if a rehashed patch
|
|
|
|
to apply to this code would actually solve the problem, so remove the patch
|
|
|
|
entirely since the original problem, as reported, was an easy to detect DOA
|
|
|
|
issue where installing to a raid array was bound to fail on reboot and so
|
|
|
|
we should be able to quickly and definitively tell if the problem resurfaces.
|
|
|
|
- Update the mdmonitor init script for LSB compliance (bz527957)
|
|
|
|
- Link from mdadm.static man page to mdadm man page (bz529314)
|
|
|
|
- Fix a problem in the raid-check script (bz523000)
|
|
|
|
- Fix the intel superblock handler so we can test on non-scsi block devices
|
|
|
|
|
2009-10-02 19:36:57 +00:00
|
|
|
* Fri Oct 2 2009 Hans de Goede <hdegoede@redhat.com> - 3.0.2-1
|
|
|
|
- New upstream release 3.0.2
|
|
|
|
- Add a patch fixing mdadm --detail -export segfaults (bz526761, bz523862)
|
|
|
|
- Add a patch making mdmon store its state under /dev/.mdadm for initrd
|
|
|
|
mdmon, rootfs mdmon handover
|
|
|
|
- Restart mdmon from initscript (when running) for rootfs mdmon handover
|
|
|
|
|
2009-09-17 11:43:33 +00:00
|
|
|
* Thu Sep 17 2009 Doug Ledford <dledford@redhat.com> - 3.0-4
|
|
|
|
- Stop some mdmon segfaults (bz523860)
|
|
|
|
|
2009-09-15 19:03:58 +00:00
|
|
|
* Tue Sep 15 2009 Doug Ledford <dledford@redhat.com> - 3.0-3
|
|
|
|
- Update to current head of upstream git repo for various imsm related fixes
|
|
|
|
(fixes bz523262)
|
|
|
|
- Fix display of metadata version in output of Detail mode
|
|
|
|
- Add UUID output to --detail --export (bz523314)
|
|
|
|
|
2009-07-24 17:43:39 +00:00
|
|
|
* Fri Jul 24 2009 Doug Ledford <dledford@redhat.com> - 3.0-2
|
|
|
|
- Improved raid-check script as well as the ability to configure what devices
|
|
|
|
get checked
|
|
|
|
- Endian patch for uuid generation
|
|
|
|
|
2009-06-29 19:22:06 +00:00
|
|
|
* Mon Jun 29 2009 Doug Ledford <dledford@redhat.com> - 3.0-1
|
|
|
|
- Remove stale patches already accepted by upstream
|
|
|
|
- Fix the raid-check script to only try and check a device if it is
|
|
|
|
checkable
|
|
|
|
- Update to official mdadm-3.0 version
|
|
|
|
- Resolves: bz505587, bz505552
|
|
|
|
|
2009-05-19 17:12:19 +00:00
|
|
|
* Tue May 19 2009 Doug Ledford <dledford@redhat.com> - 3.0-0.devel3.7
|
|
|
|
- Move the mdadm.map file from /dev/md/ to /dev/ so the installer doesn't
|
|
|
|
need to precreate the /dev/md/ directory in order for incremental
|
|
|
|
assembly to work
|
|
|
|
|
2009-05-19 14:25:55 +00:00
|
|
|
* Tue May 19 2009 Doug Ledford <dledford@redhat.com> - 3.0-0.devel3.6
|
|
|
|
- Only check raid devices automatically, do not attempt to repair them
|
|
|
|
during the weekly data scrubbing
|
|
|
|
|
2009-03-21 01:25:02 +00:00
|
|
|
* Fri Mar 20 2009 Doug Ledford <dledford@redhat.com> - 3.0-0.devel3.5
|
|
|
|
- Fix a few issues with the new code to determine when a device gets to
|
|
|
|
keep its name and when it doesn't
|
|
|
|
|
2009-03-20 21:50:21 +00:00
|
|
|
* Fri Mar 20 2009 Doug Ledford <dledford@redhat.com> - 3.0-0.devel3.4
|
|
|
|
- Change the perms on the udev rules file, it doesn't need to be +x
|
|
|
|
|
2009-03-20 21:13:38 +00:00
|
|
|
* Fri Mar 20 2009 Doug Ledford <dledford@redhat.com> - 3.0-0.devel3.3
|
|
|
|
- Slightly tweak the udev rules to make sure we don't start arrays
|
|
|
|
while running in rc.sysinit...leave array starting to it instead
|
|
|
|
- Modify mdadm to put its mapfile in /dev/md instead of /var/run/mdadm
|
|
|
|
since at startup /var/run/mdadm is read-only by default and this
|
|
|
|
breaks incremental assembly
|
|
|
|
- Change how mdadm decides to assemble incremental devices using their
|
|
|
|
preferred name or a random name to avoid possible conflicts when plugging
|
|
|
|
a foreign array into a host
|
|
|
|
|
2009-03-18 18:55:49 +00:00
|
|
|
* Wed Mar 18 2009 Doug Ledford <dledford@redhat.com> - 3.0-0.devel3.2
|
|
|
|
- Change around the mdadm udev rules we ship to avoid a udev file conflict
|
|
|
|
|
2009-03-18 18:25:56 +00:00
|
|
|
* Tue Mar 17 2009 Doug Ledford <dledford@redhat.com> - 3.0-0.devel3.1
|
|
|
|
- Update to latest devel release
|
|
|
|
- Remove the no longer necessary udev patch
|
|
|
|
- Remove the no longer necessary warn patch
|
|
|
|
- Remove the no longer necessary alias patch
|
|
|
|
- Update the mdadm.rules file to only pay attention to device adds, not
|
|
|
|
changes and to enable incremental assembly
|
|
|
|
- Add a cron job to run a weekly repair of the array to correct bad sectors
|
|
|
|
- Resolves: bz474436, bz490972
|
|
|
|
|
2009-02-26 00:03:42 +00:00
|
|
|
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.0-0.devel2.2.1
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
|
|
2009-02-19 20:20:08 +00:00
|
|
|
* Thu Feb 19 2009 Doug Ledford <dledford@redhat.com> - 3.0-0.devel2.2
|
|
|
|
- Readd our old mdadm rules file that does incremental assembly
|
|
|
|
- Remove the new mdadm rules file from upstream as we already have this in
|
|
|
|
our udev package (and the one in the udev package already has a bug fixed)
|
|
|
|
|
2009-02-12 15:10:22 +00:00
|
|
|
* Thu Feb 12 2009 Doug Ledford <dledford@redhat.com> - 3.0-0.devel2.1
|
|
|
|
- Update to latest upstream devel release
|
|
|
|
- Use the udev rules file included with mdadm instead of our own
|
|
|
|
- Drop all the no longer relevant patches
|
|
|
|
- Fix a build error in mdopen.c
|
|
|
|
- Fix the udev rules path in Makefile
|
2009-02-13 20:15:04 +00:00
|
|
|
- Fix a compile issue with the __le32_to_cpu() macro usage (bad juju to
|
|
|
|
to operations on the target of the macro as it could get executed
|
|
|
|
multiple times, and gcc now throws an error on that)
|
2009-02-13 20:55:51 +00:00
|
|
|
- Add some casts to some print statements to keep gcc from complaining
|
2009-02-12 15:10:22 +00:00
|
|
|
|
2008-10-29 18:31:10 +00:00
|
|
|
* Fri Oct 24 2008 Doug Ledford <dledford@redhat.com> - 2.6.7.1-1
|
|
|
|
- Updated to latest upstream stable release (#466803)
|
|
|
|
- Change udev rule to not assemble degraded arrays (#453314)
|
|
|
|
- Fix metadata matching in config file (#466078)
|
|
|
|
- Fix assembly of raid10 devices (#444237)
|
|
|
|
- Fix incremental assembly of partitioned raid devices (#447818)
|
|
|
|
|
2008-06-26 23:48:40 +00:00
|
|
|
* Thu Jun 26 2008 Doug Ledford <dledford@redhat.com> - 2.6.7-1
|
|
|
|
- Update to latest upstream version (should resolve #444237)
|
|
|
|
- Drop incremental patch as it's now part of upstream
|
|
|
|
- Clean up all the open() calls in the code (#437145)
|
|
|
|
- Fix the build process to actually generate mdassemble (#446988)
|
|
|
|
- Update the udev rules to get additional info about arrays being assembled
|
|
|
|
from the /etc/mdadm.conf file (--scan option) (#447818)
|
|
|
|
- Update the udev rules to run degraded arrays (--run option) (#452459)
|
|
|
|
|
2008-04-17 16:27:33 +00:00
|
|
|
* Thu Apr 17 2008 Bill Nottingham <notting@redhat.com> - 2.6.4-4
|
|
|
|
- make /dev/md if necessary in incremental mode (#429604)
|
|
|
|
- open RAID devices with O_EXCL to avoid racing against other --incremental processes (#433932)
|
|
|
|
|
|
|
|
* Fri Feb 1 2008 Bill Nottingham <notting@redhat.com> - 2.6.4-3
|
2008-02-01 22:01:46 +00:00
|
|
|
- add a udev rules file for device assembly (#429604)
|
|
|
|
|
2008-01-18 17:52:05 +00:00
|
|
|
* Fri Jan 18 2008 Doug Ledford <dledford@redhat.com> - 2.6.4-2
|
|
|
|
- Bump version and rebuild
|
|
|
|
|
2007-10-19 16:38:10 +00:00
|
|
|
* Fri Oct 19 2007 Doug Ledford <dledford@redhat.com> - 2.6.4-1
|
|
|
|
- Update to latest upstream and remove patches upstream has taken
|
|
|
|
|
2007-08-29 04:00:04 +00:00
|
|
|
* Tue Aug 28 2007 Fedora Release Engineering <rel-eng at fedoraproject dot org> - 2.6.2-5
|
|
|
|
- Rebuild for selinux ppc32 issue.
|
|
|
|
|
2007-07-09 18:49:04 +00:00
|
|
|
* Mon Jul 09 2007 Doug Ledford <dledford@redhat.com> - 2.6.2-4
|
|
|
|
- Oops, if we call -C -e1, minor_version is no longer properly set, fix that
|
|
|
|
up
|
|
|
|
- Related: bz230207
|
|
|
|
|
2007-07-06 16:39:50 +00:00
|
|
|
* Fri Jul 06 2007 Doug Ledford <dledford@redhat.com> - 2.6.2-3
|
|
|
|
- Oops, had to update the file leak patch, missed one thing
|
|
|
|
- Minor tweak to return codes in init script and add LSB header
|
|
|
|
- Resolves: bz244582, bz246980
|
|
|
|
|
2007-07-03 20:04:11 +00:00
|
|
|
* Mon Jul 02 2007 Doug Ledford <dledford@redhat.com> - 2.6.2-2
|
|
|
|
- Fix a file leak issue when mdadm is in monitor mode
|
|
|
|
- Update mdadm init script so that status will always run and so
|
|
|
|
return codes are standards compliant
|
|
|
|
- Fix assembly of version 1 superblock devices
|
|
|
|
- Make the attempt to create an already running device have a clearer
|
|
|
|
error message
|
|
|
|
- Allow the creation of a degraded raid4 array like we allow for raid5
|
|
|
|
- Make mdadm actually pay attention to raid4 devices when in monitor mode
|
|
|
|
- Make the mdmonitor script use daemon() correctly
|
|
|
|
- Fix a bug where manage mode would not add disks correctly under certain
|
|
|
|
conditions
|
2007-07-09 18:49:04 +00:00
|
|
|
- Resolves: bz244582, bz242688, bz230207, bz169516, bz171862, bz171938
|
2007-07-03 20:04:11 +00:00
|
|
|
- Resolves: bz174642, bz224272, bz186524
|
|
|
|
|
2007-07-02 15:43:07 +00:00
|
|
|
* Mon Jul 02 2007 Doug Ledford <dledford@redhat.com> - 2.6.2-1
|
|
|
|
- Update to latest upstream
|
|
|
|
- Remove requirement for /usr/sbin/sendmail - it's optional and not on by
|
|
|
|
default, and sendmail isn't *required* for mdadm itself to work, and isn't
|
|
|
|
even required for the monitoring capability to work, just if you want to
|
|
|
|
have the monitoring capability do the automatic email thing instead of
|
|
|
|
run your own program (and if you use the program option of the monitor
|
|
|
|
capability, your program could email you in a different manner entirely)
|
|
|
|
|
2007-04-17 00:17:54 +00:00
|
|
|
* Mon Apr 16 2007 Doug Ledford <dledford@redhat.com> - 2.6.1-4
|
|
|
|
- More cleanups for merge review process
|
|
|
|
- Related: bz226134
|
|
|
|
|
2007-04-11 15:34:23 +00:00
|
|
|
* Wed Apr 11 2007 Doug Ledford <dledford@redhat.com> - 2.6.1-3
|
|
|
|
- Various cleanups as part of merge review process
|
|
|
|
- Related: bz226134
|
|
|
|
|
2007-03-31 13:45:58 +00:00
|
|
|
* Sat Mar 31 2007 Doug Ledford <dledford@redhat.com> - 2.6.1-2
|
|
|
|
- Oops, missing a dependency in the Makefile
|
|
|
|
|
2007-03-31 13:03:11 +00:00
|
|
|
* Sat Mar 31 2007 Doug Ledford <dledford@redhat.com> - 2.6.1-1
|
|
|
|
- Update to latest upstream version
|
2007-07-03 20:04:11 +00:00
|
|
|
- Resolves: bz233422
|
2007-03-31 13:03:11 +00:00
|
|
|
|
2007-01-26 19:17:05 +00:00
|
|
|
* Fri Jan 26 2007 Doug Ledford <dledford@redhat.com> - 2.6-1
|
|
|
|
- Update to latest upstream version
|
|
|
|
- Remove the mdmpd daemon entirely. Now that multipath tools from the lvm/dm
|
|
|
|
packages handles multipath devices well, this is no longer needed.
|
|
|
|
- Various cleanups in the spec file
|
|
|
|
|
2006-11-09 17:42:25 +00:00
|
|
|
* Thu Nov 09 2006 Doug Ledford <dledford@redhat.com> - 2.5.4-3
|
|
|
|
- Add a fix for the broken printout of array GUID when using the -E --brief
|
|
|
|
flags
|
|
|
|
|
|
|
|
* Fri Oct 13 2006 Doug Ledford <dledford@redhat.com> - 2.5.4-2
|
|
|
|
- tag present on another branch and can't be forcibly moved
|
|
|
|
required number bump
|
|
|
|
|
2006-10-13 13:24:28 +00:00
|
|
|
* Fri Oct 13 2006 Doug Ledford <dledford@redhat.com> - 2.5.4-1
|
|
|
|
- Update to 2.5.4 (listed as a bugfix update by upstream)
|
|
|
|
- Remove previous bitmap patch that's now part of 2.5.4
|
|
|
|
|
2006-10-08 15:18:52 +00:00
|
|
|
* Sun Oct 8 2006 Doug Ledford <dledford@redhat.com> - 2.5.3-2
|
|
|
|
- Fix a big-endian machine error in the bitmap code (Paul Clements)
|
|
|
|
|
2006-08-07 14:35:49 +00:00
|
|
|
* Mon Aug 7 2006 Doug Ledford <dledford@redhat.com> - 2.5.3-1
|
|
|
|
- Update to 2.5.3 which upstream calls a "bug fix" release
|
|
|
|
|
2006-07-12 07:19:51 +00:00
|
|
|
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 2.5.2-1.1
|
|
|
|
- rebuild
|
|
|
|
|
2006-07-07 19:24:16 +00:00
|
|
|
* Fri Jul 7 2006 Doug Ledford <dledford@redhat.com> - 2.5.2-1
|
|
|
|
- Update to 2.5.2
|
|
|
|
- Remove auto default patch as upstream now has a preferred default auto method
|
|
|
|
|
2006-03-09 00:01:27 +00:00
|
|
|
* Wed Mar 8 2006 Peter Jones <pjones@redhat.com> - 2.3.1-3
|
|
|
|
- fix build on ppc64
|
|
|
|
|
2006-03-08 23:23:52 +00:00
|
|
|
* Wed Mar 8 2006 Jeremy Katz <katzj@redhat.com> - 2.3.1-2
|
|
|
|
- fix build on ppc
|
|
|
|
|
2006-03-08 23:20:13 +00:00
|
|
|
* Wed Mar 8 2006 Jeremy Katz <katzj@redhat.com> - 2.3.1-1
|
|
|
|
- update to 2.3.1 to fix raid5 (#184284)
|
|
|
|
|
2006-02-11 04:29:35 +00:00
|
|
|
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 2.2-1.fc5.2.1
|
|
|
|
- bump again for double-long bug on ppc(64)
|
|
|
|
|
2006-02-07 12:56:21 +00:00
|
|
|
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 2.2-1.fc5.2
|
|
|
|
- rebuilt for new gcc4.1 snapshot and glibc changes
|
|
|
|
|
2005-12-09 22:41:58 +00:00
|
|
|
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
2005-12-05 17:03:56 +00:00
|
|
|
* Mon Dec 05 2005 Warren Togami <wtogami@redhat.com> 2.2-1
|
|
|
|
- 2.2 upgrade (#167897)
|
|
|
|
- disable diet because we don't ship it anymore
|
|
|
|
and we don't actually use mdassemble now
|
|
|
|
|
2005-05-16 22:03:20 +00:00
|
|
|
* Mon May 16 2005 Doug Ledford <dledford@redhat.com> 1.11.0-4.fc4
|
|
|
|
- Make the mdmonitor init script use the pid-file option, major cleanup
|
|
|
|
of the script now possible (#134459)
|
|
|
|
|
2005-05-16 21:36:00 +00:00
|
|
|
* Mon May 16 2005 Doug Ledford <dledford@redhat.com> 1.11.0-3.fc4
|
|
|
|
- Put back the obsoletes: raidtools that was present in 1.11.0-1.fc4
|
|
|
|
|
|
|
|
* Mon May 16 2005 Doug Ledford <dledford@redhat.com> 1.11.0-2.fc4
|
2005-05-16 21:18:34 +00:00
|
|
|
- Change the default auto= mode so it need not be on the command line to
|
2005-05-16 22:03:20 +00:00
|
|
|
work with udev, however it is still supported on the command line (#132706)
|
2005-05-16 21:18:34 +00:00
|
|
|
- Add a man page (from Luca Berra) for mdassemble
|
|
|
|
|
|
|
|
* Wed May 11 2005 Doug Ledford <dledford@redhat.com> - 1.11.0-1.fc4
|
|
|
|
- Upgrade to 1.11.0
|
|
|
|
|
2005-04-27 23:24:44 +00:00
|
|
|
* Wed Apr 27 2005 Jeremy Katz <katzj@redhat.com> - 1.9.0-3.fc4
|
|
|
|
- fix mdmonitor initscript (#144717)
|
|
|
|
|
2005-03-21 17:22:11 +00:00
|
|
|
* Mon Mar 21 2005 Doug Ledford <dledford@redhat.com> 1.9.0-2
|
|
|
|
- Build mdadm.static and mdassemble (static as well) to be used in initrd
|
|
|
|
images
|
|
|
|
|
2005-03-09 18:56:19 +00:00
|
|
|
* Wed Mar 09 2005 Doug Ledford <dledford@redhat.com> 1.9.0-1
|
|
|
|
- Initial upgrade to 1.9.0 and update of doc files
|
2005-03-09 20:02:02 +00:00
|
|
|
- Fix an s390 build error
|
2005-03-09 18:56:19 +00:00
|
|
|
|
2004-10-04 21:12:52 +00:00
|
|
|
* Mon Oct 04 2004 Doug Ledford <dledford@redhat.com> 1.6.0-2
|
|
|
|
- Remove /etc/mdadm.conf from the file list. Anaconda will write one out
|
|
|
|
if it's needed.
|
|
|
|
|
2004-10-01 16:13:49 +00:00
|
|
|
* Fri Oct 01 2004 Doug Ledford <dledford@redhat.com> 1.6.0-1
|
|
|
|
- Update to newer upstream version
|
|
|
|
- Make mdmpd work on kernels that don't have the event interface patch
|
|
|
|
|
2004-09-09 08:29:29 +00:00
|
|
|
* Fri Jul 30 2004 Dan Walsh <dwalsh@redhat.com> 1.5.0-11
|
|
|
|
- Create a directory /var/run/mdadm to contain mdadm.pid
|
|
|
|
- This cleans up SELinux problem
|
|
|
|
|
2004-09-09 08:29:11 +00:00
|
|
|
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
2004-09-09 08:28:44 +00:00
|
|
|
* Sat May 22 2004 Doug Ledford <dledford@redhat.com> - 1.5.0-9
|
|
|
|
- Fix Makefile and build method to satisfy bz #123769
|
|
|
|
- Add mdmpd man page, update mdmpd version to 0.3 - bz #117160
|
|
|
|
- Make sure mdadm --monitor closes all md device files so that md devices
|
|
|
|
can be stopped while mdadm is still running - bz #119532
|
|
|
|
|
2004-09-09 08:27:53 +00:00
|
|
|
* Thu May 20 2004 Jeremy Katz <katzj@redhat.com> - 1.5.0-8
|
|
|
|
- remove unneeded patch, can use --run instead
|
|
|
|
|
2004-09-09 08:27:45 +00:00
|
|
|
* Wed May 19 2004 Jeremy Katz <katzj@redhat.com> - 1.5.0-7
|
|
|
|
- add patch with reallyforce mode on creation to be used by anaconda
|
|
|
|
|
|
|
|
* Wed May 12 2004 Doug Ledford <dledford@redhat.com> 2.5.0-6
|
2007-04-11 15:34:23 +00:00
|
|
|
- Fix a bug in the postun scriptlet related to downgrading to a version
|
2004-09-09 08:27:45 +00:00
|
|
|
of mdadm that doesn't include the mdmpd daemon.
|
|
|
|
|
|
|
|
* Fri May 07 2004 Doug Ledford <dledford@redhat.com> 1.5.0-5
|
|
|
|
- Disable service mdmpd by default to avoid [Failed] messages on
|
|
|
|
current 2.6 kernels. Possibly re-enable it by default once the
|
|
|
|
2.6 kernels have the md event interface.
|
|
|
|
|
|
|
|
* Thu Apr 22 2004 Doug Ledford <dledford@redhat.com> 1.5.0-4
|
|
|
|
- Update mdmonitor script to start daemon more cleanly
|
|
|
|
- Repackage mdmpd tarball to include gcc-3.4 changes and to make
|
|
|
|
mdmpd properly daemonize at startup instead of forking and leaving
|
|
|
|
the child attached to the terminal.
|
|
|
|
|
2004-09-09 08:27:01 +00:00
|
|
|
* Thu Mar 4 2004 Bill Nottingham <notting@redhat.com> 1.5.0-3
|
|
|
|
- ship /var/run/mpmpd (#117497)
|
|
|
|
|
|
|
|
* Thu Feb 26 2004 Doug Ledford <dledford@redhat.com> 1.5.0-2
|
|
|
|
- Add a default MAILADDR line to the mdadm.conf file installed by default
|
|
|
|
(Bugzilla #92447)
|
|
|
|
- Make it build with gcc-3.4
|
|
|
|
|
|
|
|
* Mon Feb 23 2004 Doug Ledford <dledford@redhat.com> 1.5.0-1
|
|
|
|
- Update to 1.5.0 (from Matthew J. Galgoci <mgalgoci@redhat.com>)
|
|
|
|
|
|
|
|
* Sun Nov 16 2003 Doug Ledford <dledford@redhat.com> 1.4.0-1
|
|
|
|
- fix problem with recovery thread sleeping in mdmpd
|
|
|
|
|
|
|
|
* Fri Nov 14 2003 Doug Ledford <dledford@redhat.com>
|
|
|
|
- sync upstream
|
|
|
|
- add mdmpd package into mdadm package
|
|
|
|
|
2004-09-09 08:25:23 +00:00
|
|
|
* Wed Sep 10 2003 Michael K. Johnson <johnsonm@redhat.com> 1.3.0-1
|
|
|
|
- sync upstream
|
|
|
|
|
|
|
|
* Tue Mar 11 2003 Michael K. Johnson <johnsonm@redhat.com> 1.1.0-1
|
|
|
|
- sync upstream
|
|
|
|
|
2004-09-09 08:25:08 +00:00
|
|
|
* Tue Jan 28 2003 Michael K. Johnson <johnsonm@redhat.com> 1.0.1-1
|
|
|
|
- update for rebuild
|
|
|
|
|
|
|
|
* Wed Dec 25 2002 Tim Powers <timp@redhat.com> 1.0.0-8
|
|
|
|
- fix references to %%install in the changelog so that it will build
|
|
|
|
|
|
|
|
* Fri Dec 13 2002 Elliot Lee <sopwith@redhat.com> 1.0.0-7
|
|
|
|
- Rebuild
|
|
|
|
|
2004-09-09 08:25:03 +00:00
|
|
|
* Fri Jul 12 2002 Michael K. Johnson <johnsonm@redhat.com>
|
|
|
|
- Changed RPM Group to System Environment/Base
|
2004-09-09 08:24:56 +00:00
|
|
|
|
|
|
|
* Wed May 15 2002 Michael K. Johnson <johnsonm@redhat.com>
|
|
|
|
- minor cleanups to the text, conditionalize rm -rf
|
|
|
|
- added mdmonitor init script
|
|
|
|
|
|
|
|
* Fri May 10 2002 <neilb@cse.unsw.edu.au>
|
|
|
|
- update to 1.0.0
|
|
|
|
- Set CXFLAGS instead of CFLAGS
|
|
|
|
|
|
|
|
* Sat Apr 6 2002 <neilb@cse.unsw.edu.au>
|
2004-09-09 08:25:08 +00:00
|
|
|
- change %%install to use "make install"
|
2004-09-09 08:24:56 +00:00
|
|
|
|
|
|
|
* Fri Mar 15 2002 <gleblanc@localhost.localdomain>
|
|
|
|
- beautification
|
|
|
|
- made mdadm.conf non-replaceable config
|
|
|
|
- renamed Copyright to License in the header
|
|
|
|
- added missing license file
|
|
|
|
- used macros for file paths
|
|
|
|
|
|
|
|
* Fri Mar 15 2002 Luca Berra <bluca@comedia.it>
|
|
|
|
- Added Obsoletes: mdctl
|
|
|
|
- missingok for configfile
|
|
|
|
|
|
|
|
* Wed Mar 12 2002 NeilBrown <neilb@cse.unsw.edu.au>
|
|
|
|
- Add md.4 and mdadm.conf.5 man pages
|
|
|
|
|
2007-04-17 00:17:54 +00:00
|
|
|
* Fri Mar 08 2002 Chris Siebenmann <cks@cquest.utoronto.ca>
|
2004-09-09 08:24:56 +00:00
|
|
|
- builds properly as non-root.
|
|
|
|
|
|
|
|
* Fri Mar 08 2002 Derek Vadala <derek@cynicism.com>
|
|
|
|
- updated for 0.7, fixed /usr/share/doc and added manpage
|
|
|
|
|
|
|
|
* Tue Aug 07 2001 Danilo Godec <danci@agenda.si>
|
|
|
|
- initial RPM build
|