auto-import changelog data from mdadm-1.5.0-3.src.rpm

Thu Mar 04 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
This commit is contained in:
cvsdist 2004-09-09 08:27:01 +00:00
parent 043a42b8d4
commit ab5716121a
3 changed files with 44 additions and 7 deletions

View File

@ -1 +1,2 @@
mdadm-1.3.0.tgz
mdadm-1.5.0.tgz
mdmpd-0.1.tgz

View File

@ -1,14 +1,20 @@
Summary: mdadm controls Linux md devices (software RAID arrays)
Name: mdadm
Version: 1.3.0
Release: 1
Version: 1.5.0
Release: 3
Source: http://www.cse.unsw.edu.au/~neilb/source/mdadm/mdadm-%{version}.tgz
Source1: mdmonitor.init
Source2: mdmpd-0.1.tgz
Source3: mdmpd.init
Patch: mdadm-1.4.0-build-mdmpd.patch
Patch1: mdadm-1.5.0-email.patch
Patch2: mdmpd-0.1-gcc-3.4.patch
URL: http://www.cse.unsw.edu.au/~neilb/source/mdadm/
License: GPL
Group: System Environment/Base
BuildRoot: %{_tmppath}/%{name}-root
Obsoletes: mdctl
Requires: smtpdaemon
%description
mdadm is used to create, manage, and monitor Linux MD (software RAID)
@ -18,7 +24,10 @@ almost all functions without a configuration file, though a configuration
file can be used to help with some common tasks.
%prep
%setup -q
%setup -q -a 2
%patch -p1 -b .mdmpd-make
%patch1 -p1 -b .email
%patch2 -p1 -b .gcc-3.4
%build
make CXFLAGS="$RPM_OPT_FLAGS" SYSCONFDIR="%{_sysconfdir}"
@ -27,33 +36,59 @@ make CXFLAGS="$RPM_OPT_FLAGS" SYSCONFDIR="%{_sysconfdir}"
make DESTDIR=$RPM_BUILD_ROOT MANDIR=%{_mandir} BINDIR=/sbin install
install -D -m644 mdadm.conf-example $RPM_BUILD_ROOT/%{_sysconfdir}/mdadm.conf
install -D -m755 %{SOURCE1} $RPM_BUILD_ROOT/%{_initrddir}/mdmonitor
install -D -m755 %{SOURCE3} $RPM_BUILD_ROOT/%{_initrddir}/mdmpd
mkdir -p -m 700 $RPM_BUILD_ROOT/var/run/mdmpd
%clean
[ $RPM_BUILD_ROOT != / ] && rm -rf $RPM_BUILD_ROOT
%post
/sbin/chkconfig --add mdmonitor
/sbin/chkconfig --add mdmpd
%preun
if [ "$1" = 0 ]; then
service mdmonitor stop > /dev/null 2>&1
service mdmonitor stop > /dev/null 2>&1 ||:
/sbin/chkconfig --del mdmonitor
service mdmpd stop > /dev/null 2>&1 ||:
/sbin/chkconfig --del mdmpd
fi
%postun
if [ "$1" -ge "1" ]; then
service mdmonitor condrestart > /dev/null 2>&1
service mdmpd condrestart > /dev/null 2>&1
fi
%files
%defattr(-,root,root)
%doc TODO ChangeLog mdadm.conf-example COPYING
/sbin/mdadm
/sbin/*
%{_initrddir}/*
%config(noreplace,missingok)/%{_sysconfdir}/mdadm.conf
%{_mandir}/man*/md*
%attr(0700,root,root) %dir /var/run/mdmpd
%changelog
* 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
* Wed Sep 10 2003 Michael K. Johnson <johnsonm@redhat.com> 1.3.0-1
- sync upstream

View File

@ -1 +1,2 @@
61186df5073fae32569bd4bb12f9da36 mdadm-1.3.0.tgz
765286c4a22e36b70ce2f817f0c4647c mdadm-1.5.0.tgz
9cd1fd8a232064fbd89524fffc3daee1 mdmpd-0.1.tgz