Blame SPECS/smartmontools.spec

e7316c
Summary:	Tools for monitoring SMART capable hard disks
e7316c
Name:		smartmontools
e7316c
Version:	6.5
e7316c
Release:	1%{?dist}
e7316c
Epoch:		1
e7316c
Group:		System Environment/Base
e7316c
License:	GPLv2+
e7316c
URL:		https://www.smartmontools.org/
e7316c
Source0:	https://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.gz
e7316c
Source2:	smartmontools.sysconf
e7316c
Source4:	smartdnotify
e7316c
e7316c
#fedora/rhel specific
e7316c
Patch1:		smartmontools-5.38-defaultconf.patch
e7316c
Patch2:         smartmontools-6.2-up2datedrivedb.patch
e7316c
e7316c
BuildRoot:	%(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
e7316c
Requires:	fileutils mailx
e7316c
#new rpm does not handle this (yet?)
e7316c
#Requires(triggerun):	systemd-units
e7316c
Requires(post):		systemd-units
e7316c
Requires(preun):	systemd-units
e7316c
Requires(postun):	systemd-units
e7316c
BuildRequires:	readline-devel ncurses-devel automake util-linux groff gettext
e7316c
BuildRequires:	libselinux-devel libcap-ng-devel
e7316c
BuildRequires:	systemd-units
e7316c
e7316c
%description
e7316c
The smartmontools package contains two utility programs (smartctl
e7316c
and smartd) to control and monitor storage systems using the Self-
e7316c
Monitoring, Analysis and Reporting Technology system (SMART) built
e7316c
into most modern ATA/SATA, SCSI/SAS and NVMe disks. In many cases,
e7316c
these utilities will provide advanced warning of disk degradation
e7316c
and failure.
e7316c
e7316c
%prep
e7316c
%setup -q 
e7316c
%patch1 -p1 -b .defaultconf
e7316c
%patch2 -p1 -b .up2datedrivedb
e7316c
e7316c
# fix encoding
e7316c
for fe in AUTHORS ChangeLog
e7316c
do
e7316c
  iconv -f iso-8859-1 -t utf-8 <$fe >$fe.new
e7316c
  touch -r $fe $fe.new
e7316c
  mv -f $fe.new $fe
e7316c
done
e7316c
e7316c
%build
e7316c
autoreconf -i
e7316c
%configure --with-selinux --with-libcap-ng=yes --with-systemdsystemunitdir=%{_unitdir} --sysconfdir=%{_sysconfdir}/%name/
e7316c
%ifarch sparc64
e7316c
make CXXFLAGS="$RPM_OPT_FLAGS -fPIE" LDFLAGS="-pie -Wl,-z,relro,-z,now"
e7316c
%else
e7316c
make CXXFLAGS="$RPM_OPT_FLAGS -fpie" LDFLAGS="-pie -Wl,-z,relro,-z,now"
e7316c
%endif
e7316c
e7316c
sed -i 's|/etc/smartmontools/sysconfig|/etc/sysconfig|g' smartd.service
e7316c
e7316c
%install
e7316c
rm -rf $RPM_BUILD_ROOT
e7316c
make DESTDIR=$RPM_BUILD_ROOT install
e7316c
e7316c
rm -f examplescripts/Makefile*
e7316c
chmod a-x -R examplescripts/*
e7316c
install -D -p -m 644 %{SOURCE2} $RPM_BUILD_ROOT%{_sysconfdir}/sysconfig/smartmontools
e7316c
install -D -p -m 755 %{SOURCE4} $RPM_BUILD_ROOT/%{_libexecdir}/%{name}/smartdnotify
e7316c
mkdir -p $RPM_BUILD_ROOT/%{_sysconfdir}/%{name}/smartd_warning.d
e7316c
rm -rf $RPM_BUILD_ROOT/etc/{rc.d,init.d}
e7316c
rm -rf $RPM_BUILD_ROOT/%{_docdir}/%{name}
e7316c
e7316c
%clean
e7316c
rm -rf $RPM_BUILD_ROOT
e7316c
e7316c
%preun
e7316c
%systemd_preun smartd.service
e7316c
e7316c
%pre
e7316c
if [ $1 = 2 ] # only during update
e7316c
then
e7316c
  # for Fedora 19-22
e7316c
  if [ -f %{_sysconfdir}/smartd.conf -a ! -e %{_sysconfdir}/%name ]
e7316c
  then
e7316c
    mkdir -p %{_sysconfdir}/%{name}
e7316c
    cp -p %{_sysconfdir}/smartd.conf %{_sysconfdir}/%{name}
e7316c
  fi
e7316c
fi
e7316c
e7316c
%post
e7316c
%systemd_post smartd.service
e7316c
e7316c
%postun
e7316c
%systemd_postun_with_restart smartd.service
e7316c
e7316c
%files
e7316c
%defattr(-,root,root,-)
e7316c
%doc AUTHORS ChangeLog COPYING INSTALL NEWS README
e7316c
%doc TODO examplescripts smartd.conf
e7316c
%dir %{_sysconfdir}/%name
e7316c
%dir %{_sysconfdir}/%name/smartd_warning.d
e7316c
%config(noreplace) %{_sysconfdir}/%{name}/smartd.conf
e7316c
%config(noreplace) %{_sysconfdir}/%{name}/smartd_warning.sh
e7316c
%config(noreplace) %{_sysconfdir}/sysconfig/smartmontools
e7316c
%{_unitdir}/smartd.service
e7316c
%{_sbindir}/smartd
e7316c
%{_sbindir}/update-smart-drivedb
e7316c
%{_sbindir}/smartctl
e7316c
%{_mandir}/man?/smart*.*
e7316c
%{_mandir}/man8/update-smart-drivedb.8*
e7316c
%{_libexecdir}/%{name}
e7316c
%{_datadir}/%{name}
e7316c
e7316c
%changelog
e7316c
* Wed Oct 11 2017 Michal Hlavinka <mhlavink@redhat.com> - 1:6.5-1
e7316c
- smartmontools updated to 6.5
e7316c
- adds support for NVMe devices (#1369731)
e7316c
- minor spec cleanup (#1463148)
e7316c
e7316c
* Sun Mar 26 2017 Michal Hlavinka <mhlavink@redhat.com> - 1:6.2-8
e7316c
- use up to date drivedb (#1388510)
e7316c
- less scarry messages reported to users (#1340462)
e7316c
e7316c
* Wed Sep 07 2016 Michal Hlavinka <mhlavink@redhat.com> - 1:6.2-7
e7316c
- add update-smart-drivedb.8 man page (#1367237)
e7316c
- fix drivedb update url (#1364830)
e7316c
e7316c
* Thu May 05 2016 Michal Hlavinka <mhlavink@redhat.com> - 1:6.2-6
e7316c
- allow to discover more devices (#1294999)
e7316c
e7316c
* Mon May 02 2016 Michal Hlavinka <mhlavink@redhat.com> - 1:6.2-5
e7316c
- do not leak file descriptor when calling mailx (#1212582)
e7316c
e7316c
* Fri Jan 24 2014 Daniel Mach <dmach@redhat.com> - 1:6.2-4
e7316c
- Mass rebuild 2014-01-24
e7316c
e7316c
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 1:6.2-3
e7316c
- Mass rebuild 2013-12-27
e7316c
e7316c
* Mon Sep 16 2013 Michal Hlavinka <mhlavink@redhat.com> - 1:6.2-2
e7316c
- smartd service file wrong path to environment file (#1008516)
e7316c
e7316c
* Tue Jul 30 2013 Michal Hlavinka <mhlavink@redhat.com> - 1:6.2-1
e7316c
- smartmontools updated to 6.2
e7316c
e7316c
* Mon Jul 22 2013 Michal Hlavinka <mhlavink@redhat.com> - 1:6.1-2
e7316c
- spec cleanup
e7316c
e7316c
* Wed Mar 20 2013 Michal Hlavinka <mhlavink@redhat.com> - 1:6.1-1
e7316c
- smartmontools updated to 6.1
e7316c
e7316c
* Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:6.0-2
e7316c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
e7316c
e7316c
* Thu Oct 11 2012 Michal Hlavinka <mhlavink@redhat.com> - 1:6.0-1
e7316c
- smartmontools updated to 6.0
e7316c
e7316c
* Tue Aug 21 2012 Michal Hlavinka <mhlavink@redhat.com> - 1:5.43-3
e7316c
- use new systemd rpm macros (#850316)
e7316c
e7316c
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:5.43-2
e7316c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
e7316c
e7316c
* Mon Jul 02 2012 Michal Hlavinka <mhlavink@redhat.com> - 1:5.43-1
e7316c
- smartmontools updated to 5.43
e7316c
e7316c
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:5.42-3
e7316c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
e7316c
e7316c
* Fri Dec 02 2011 Michal Hlavinka <mhlavink@redhat.com> - 1:5.42-2
e7316c
- enable smartd after installation
e7316c
e7316c
* Fri Oct 21 2011 Michal Hlavinka <mhlavink@redhat.com> - 1:5.42-1
e7316c
- smartmontools updated to 5.42
e7316c
e7316c
* Mon Jun 13 2011 Michal Hlavinka <mhlavink@redhat.com> - 1:5.41-2
e7316c
- make F-14 (sysv init) -> F-15 (systemd) transition more robust
e7316c
e7316c
* Fri Jun 10 2011 Michal Hlavinka <mhlavink@redhat.com> - 1:5.41-1
e7316c
- updated to 5.41
e7316c
e7316c
* Mon May 16 2011 Michal Hlavinka <mhlavink@redhat.com> - 1:5.40-10
e7316c
- fix path to notify script (#675778)
e7316c
e7316c
* Fri Mar 11 2011 Michal Hlavinka <mhlavink@redhat.com> - 1:5.40-9
e7316c
- fix typos in man page
e7316c
e7316c
* Fri Mar 04 2011 Michal Hlavinka <mhlavink@redhat.com> - 1:5.40-8
e7316c
- don't call chkconfig add, we use systemd now
e7316c
 
e7316c
* Thu Mar 03 2011 Michal Hlavinka <mhlavink@redhat.com> - 1:5.40-7
e7316c
- own %%{_datadir}/%%{name} and %%{_libexecdir}/%%{name} dirs
e7316c
e7316c
* Thu Feb 17 2011 Michal Hlavinka <mhlavink@redhat.com> - 1:5.40-6
e7316c
- notify users when disk is failing
e7316c
e7316c
* Wed Feb 09 2011 Michal Hlavinka <mhlavink@redhat.com> - 1:5.40-5
e7316c
- move to systemd
e7316c
e7316c
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:5.40-4
e7316c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
e7316c
e7316c
* Mon Nov 15 2010 Michal Hlavinka <mhlavink@redhat.com> - 1:5.40-3
e7316c
- megaraid: Fix segfault on non-data commands (#577935)
e7316c
e7316c
* Tue Nov 09 2010 Michal Hlavinka <mhlavink@redhat.com> - 1:5.40-2
e7316c
- don't forget to restart smartd service after update (#651211)
e7316c
e7316c
* Mon Oct 18 2010 Michal Hlavinka <mhlavink@redhat.com> - 1:5.40-1
e7316c
- updated to 5.40 final
e7316c
e7316c
* Mon Sep 27 2010 Michal Hlavinka <mhlavink@redhat.com> - 1:5.39.1-2.r3169
e7316c
- updated to r3169
e7316c
- ddds riverdb support for new devices (#637171)
e7316c
e7316c
* Fri Jan 29 2010 Michal Hlavinka <mhlavink@redhat.com> - 1:5.39.1-1
e7316c
- updated to 5.39.1
e7316c
- Fix spin-up of SATA drive if '-n standby' is used.
e7316c
e7316c
* Wed Jan 20 2010 Michal Hlavinka <mhlavink@redhat.com> - 1:5.39-2
e7316c
- fix DEVICESCAN -d sat
e7316c
- fix directive '-l selftest'
e7316c
- fix option '-q, --quietmode'
e7316c
e7316c
* Thu Dec 10 2009 Michal Hlavinka <mhlavink@redhat.com> - 1:5.39-1
e7316c
- update to 5.39
e7316c
e7316c
* Wed Dec 02 2009 Michal Hlavinka <mhlavink@redhat.com> - 1:5.39-0.1.rc1
e7316c
- update to 5.39-rc1
e7316c
e7316c
* Wed Nov 25 2009 Michal Hlavinka <mhlavink@redhat.com> - 1:5.38-25.20091119svn
e7316c
- spec cleanup
e7316c
e7316c
* Mon Nov 23 2009 Michal Hlavinka <mhlavink@redhat.com> - 1:5.38-24.20091119svn
e7316c
- move powermode option from sysconfig to smartd.conf (#539760)
e7316c
e7316c
* Thu Nov 19 2009 Michal Hlavinka <mhlavink@redhat.com> - 1:5.38-23.20091119svn
e7316c
- update to svn snapshot 2009-11-19
e7316c
- remove upstreamed patches
e7316c
e7316c
* Mon Nov 02 2009 Michal Hlavinka <mhlavink@redhat.com> - 1:5.38-22
e7316c
- spec cleanup
e7316c
e7316c
* Mon Oct 12 2009 Michal Hlavinka <mhlavink@redhat.com> - 1:5.38-21 
e7316c
- warn about disabled mail only if capabilities are enabled
e7316c
e7316c
* Fri Oct 09 2009 Michal Hlavinka <mhlavink@redhat.com> - 1:5.38-20
e7316c
- fix init script for case when no action was specified
e7316c
e7316c
* Fri Oct 09 2009 Michal Hlavinka <mhlavink@redhat.com> - 1:5.38-19
e7316c
- make init script lsb compliant (#528016)
e7316c
e7316c
* Mon Oct 05 2009 Michal Hlavinka <mhlavink@redhat.com> - 1:5.38-18
e7316c
- bump release for rebuild
e7316c
e7316c
* Mon Oct 05 2009 Michal Hlaivnka <mhlavink@redhat.com> - 1:5.38-17
e7316c
- make capabilities optional
e7316c
- fix capabilities for 3ware contollers (#526626)
e7316c
e7316c
* Wed Aug 26 2009 Michal Hlavinka <mhlavink@redhat.com> - 1:5.38-16
e7316c
- extend capability scanning devices
e7316c
e7316c
* Wed Aug 26 2009 Michal Hlavinka <mhlavink@redhat.com> - 1:5.38-15
e7316c
- updated patch for lower capabilities (#517728)
e7316c
- added buildrequires libcap-ng-devel
e7316c
e7316c
* Fri Aug 21 2009 Michal Hlavinka <mhlavink@redhat.com> - 1:5.38-14
e7316c
- drop all unnecessary capabilities (#517728)
e7316c
e7316c
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:5.38-13
e7316c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
e7316c
e7316c
* Thu Jun 11 2009 Michal Hlavinka <mhlavink@redhat.com> - 1:5.38-12
e7316c
- drop autogen call 
e7316c
e7316c
* Sat Apr 11 2009 Dennis Gilmore <dennis@ausil.us> - 1:5.38-11
e7316c
- remove ExclusiveArch use -fPIE on sparc64  
e7316c
- tested builds on sparcv9 sparc64 and s390x
e7316c
e7316c
* Mon Mar 09 2009 Michal Hlavinka <mhlavink@redhat.com> - 1:5.38-10
e7316c
- cleanup for merge review
e7316c
e7316c
* Fri Feb 27 2009 Tom "spot" Callaway <tcallawa@redhat.com> - 1:5.38-9
e7316c
- fix ExclusiveArch
e7316c
e7316c
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:5.38-8
e7316c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
e7316c
e7316c
* Mon Aug 11 2008 Tomas Smetana <tsmetana@redhat.com> - 1:5.38-7
e7316c
- fix #458549 - obsolete smartmontools-config
e7316c
- change the default configuration file
e7316c
e7316c
* Fri Aug 08 2008 Tomas Smetana <tsmetana@redhat.com> - 1:5.38-6
e7316c
- correct CXXFLAGS so the PIE code is produced
e7316c
e7316c
* Mon May 12 2008 Tomas Smetana <tsmetana@redhat.com> - 1:5.38-5
e7316c
- remove config subpackage
e7316c
e7316c
* Mon May 05 2008 Tomas Smetana <tsmetana@redhat.com> - 1:5.38-4.1
e7316c
- add libselinux-devel to BR
e7316c
e7316c
* Mon May 05 2008 Tomas Smetana <tsmetana@redhat.com> - 1:5.38-4
e7316c
- fix #232218 character devices /dev/twa* for 3ware 9000 series RAID
e7316c
  controllers are not created
e7316c
e7316c
* Thu Mar 27 2008 Tomas Smetana <tsmetana@redhat.com> - 1:5.38-3
e7316c
- don't attempt to query DELL PERC controllers -- they'd go offline
e7316c
e7316c
* Tue Mar 18 2008 Tomas Smetana <tsmetana@redhat.com> - 1:5.38-2
e7316c
- fix FD_CLOEXEC on SCSI device file descriptors not being set
e7316c
e7316c
* Mon Mar 10 2008 Tomas Smetana <tsmetana@redhat.com> - 1:5.38-1
e7316c
- new upstream version
e7316c
e7316c
* Tue Feb 12 2008 Tomas Smetana <tsmetana@redhat.com> - 1:5.37-8.5
e7316c
- rebuild (gcc-4.3)
e7316c
e7316c
* Tue Jan 15 2008 Tomas Smetana <tsmetana@redhat.com> - 1:5.37-8.4
e7316c
- change '-d ata' to '-d sat' in the config script for SATA drives
e7316c
e7316c
* Wed Dec 12 2007 Tomas Smetana <tsmetana@redhat.com> - 1:5.37-8.3
e7316c
- fix #375791 - parameter warning for smartd in logwatch output
e7316c
e7316c
* Wed Oct 31 2007 Tomas Smetana <tsmetana@redhat.com> - 1:5.37-8.2
e7316c
- rebuild (one more error in autogen.sh)
e7316c
e7316c
* Wed Oct 31 2007 Tomas Smetana <tsmetana@redhat.com> - 1:5.37-8.1
e7316c
- fix build with new automake
e7316c
e7316c
* Wed Oct 31 2007 Tomas Smetana <tsmetana@redhat.com> - 1:5.37-8
e7316c
- fix #359561 - typo in smartd-conf.py causes smartd to skip all disks
e7316c
e7316c
* Mon Oct 15 2007 Tomas Smetana <tsmetana@redhat.com> - 1:5.37-7.1
e7316c
- improved patch for getaddrinfo
e7316c
e7316c
* Fri Oct 12 2007 Tomas Smetana <tsmetana@redhat.com> - 1:5.37-7
e7316c
- replace gethostbyname with getaddrinfo
e7316c
e7316c
* Tue Sep 04 2007 Tomas Smetana <tsmetana@redhat.com> - 1:5.37-6
e7316c
- fix #271741 - smartd-conf.py should allow customization of parameters
e7316c
- fix #253753 - service starting by default, perhaps shouldn't
e7316c
- update initscript (related #247058 - initscript review)
e7316c
e7316c
* Mon Aug 20 2007 Tomas Smetana <tsmetana@redhat.com> - 1:5.37-5
e7316c
- add support for 24 disks on 3ware RAID controllers (related #252055)
e7316c
- fix #245442 - add %%{arm} to smartmontools's set of build archs
e7316c
- update license tag
e7316c
e7316c
* Thu Jun 21 2007 Tomas Smetana <tsmetana@redhat.com> - 1:5.37-4
e7316c
- fix #241389 - smartd-conf.py pulls in a big dependency chain, so
e7316c
  build a separate config package
e7316c
  
e7316c
* Tue Jun 05 2007 Tomas Smetana <tsmetana@redhat.com> - 1:5.37-3
e7316c
- fix #241385 - smartmontools missing dependency on mailx
e7316c
- fix #241388 - unneeded smartd-conf.py[co] installed in /usr/sbin
e7316c
e7316c
* Wed Mar  7 2007 Vitezslav Crhonek <vcrhonek@redhat.com> - 1:5.37-2
e7316c
- re-add cloexec patch
e7316c
- re-add one erased changelog entry
e7316c
- compile with -fpie (instead of -fpic)
e7316c
e7316c
* Tue Feb 27 2007 Vitezslav Crhonek <vcrhonek@redhat.com> - 1:5.37-1
e7316c
- new upstream version
e7316c
e7316c
* Thu Feb 22 2007 Tomas Mraz <tmraz@redhat.com> - 1:5.36-8
e7316c
- enable SMART on disks when smartd-conf.py runs (fix
e7316c
  by Calvin Ostrum) (#214502)
e7316c
e7316c
* Mon Feb 12 2007 Tomas Mraz <tmraz@redhat.com> - 1:5.36-7
e7316c
- redirect service script output to null (#224566)
e7316c
e7316c
* Sun Feb 11 2007 Florian La Roche <laroche@redhat.com> - 1:5.36-6
e7316c
- make sure the preun script does not fail
e7316c
e7316c
* Tue Nov  7 2006 Tomas Mraz <tmraz@redhat.com> - 1:5.36-5
e7316c
- set cloexec on device descriptor so it doesn't leak to sendmail (#214182)
e7316c
- fixed minor bug in initscript (#213683)
e7316c
- backported SATA disk detection from upstream
e7316c
e7316c
* Fri Aug 18 2006 Jesse Keating <jkeating@redhat.com> - 1:5.36-3
e7316c
- rebuilt with latest binutils to pick up 64K -z commonpagesize on ppc*
e7316c
  (#203001)
e7316c
e7316c
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1:5.36-2.1
e7316c
- rebuild
e7316c
e7316c
* Tue Jun 27 2006 Tomas Mraz <tmraz@redhat.com> - 1:5.36-2
e7316c
- kudzu is deprecated, replace it with HAL (#195752)
e7316c
- moved later in the boot process so haldaemon is already running
e7316c
  when drives are being detected
e7316c
e7316c
* Thu May 11 2006 Tomas Mraz <tmraz@redhat.com> - 1:5.36-1
e7316c
- new upstream version
e7316c
- included patch with support for cciss controllers (#191288)
e7316c
e7316c
* Tue May  2 2006 Tomas Mraz <tmraz@redhat.com> - 1:5.33-8
e7316c
- regenerate smartd.conf on every startup if the config file
e7316c
  is autogenerated (#190065)
e7316c
e7316c
* Fri Mar 24 2006 Tomas Mraz <tmraz@redhat.com> - 1:5.33-7
e7316c
- add missing quotes to /etc/sysconfig/smartmontools
e7316c
e7316c
* Wed Mar 22 2006 Tomas Mraz <tmraz@redhat.com> - 1:5.33-6
e7316c
- test SATA drives correctly
e7316c
e7316c
* Wed Mar 22 2006 Tomas Mraz <tmraz@redhat.com> - 1:5.33-5
e7316c
- add default /etc/sysconfig/smartmontools file
e7316c
- ignore errors on startup (#186130)
e7316c
- test drive for SMART support before adding it to smartd.conf
e7316c
e7316c
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 1:5.33-4.2
e7316c
- bump again for double-long bug on ppc(64)
e7316c
e7316c
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 1:5.33-4.1
e7316c
- rebuilt for new gcc4.1 snapshot and glibc changes
e7316c
e7316c
* Fri Dec 16 2005 Tomas Mraz <tmraz@redhat.com> 1:5.33-4
e7316c
- mail should be sent to root not root@localhost (#174252)
e7316c
e7316c
* Fri Nov 25 2005 Tomas Mraz <tmraz@redhat.com> 1:5.33-3
e7316c
- add libata disks with -d ata if the libata version
e7316c
  is new enough otherwise do not add them (#145859, #174095)
e7316c
e7316c
* Thu Nov  3 2005 Tomas Mraz <tmraz@redhat.com> 1:5.33-2
e7316c
- Spec file cleanup by Robert Scheck <redhat@linuxnetz.de> (#170959)
e7316c
- manual release numbering
e7316c
- remove bogus patch of non-installed file
e7316c
- only non-removable drives should be added to smartd.conf
e7316c
- smartd.conf should be owned (#171498)
e7316c
e7316c
* Tue Oct 25 2005 Dave Jones <davej@redhat.com>
e7316c
- Add comments to generated smartd.conf (#135397)
e7316c
e7316c
* Thu Aug 04 2005 Karsten Hopp <karsten@redhat.de>
e7316c
- package all python files
e7316c
e7316c
* Tue Mar  1 2005 Dave Jones <davej@redhat.com>
e7316c
- Rebuild for gcc4
e7316c
e7316c
* Wed Feb  9 2005 Dave Jones <davej@redhat.com>
e7316c
- Build on PPC32 too (#147090)
e7316c
e7316c
* Sat Dec 18 2004 Dave Jones <davej@redhat.com>
e7316c
- Initial packaging, based upon kernel-utils.
e7316c