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