Blame SPECS/smartmontools.spec

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