2004-09-09 12:54:06 +00:00
|
|
|
Name: sysstat
|
2012-08-01 15:17:40 +00:00
|
|
|
Version: 10.1.1
|
|
|
|
Release: 1%{?dist}
|
2007-02-12 13:38:06 +00:00
|
|
|
Summary: The sar and iostat system monitoring commands
|
2007-11-08 14:51:48 +00:00
|
|
|
License: GPLv2+
|
2004-09-09 12:54:06 +00:00
|
|
|
Group: Applications/System
|
2012-05-16 19:43:21 +00:00
|
|
|
URL: http://sebastien.godard.pagesperso-orange.fr/
|
|
|
|
Source0: http://pagesperso-orange.fr/sebastien.godard/%{name}-%{version}.tar.bz2
|
2011-09-12 18:34:29 +00:00
|
|
|
Source1: sysstat.service
|
2011-04-04 10:15:25 +00:00
|
|
|
Patch12: sysstat-10.0.0-makefile.patch
|
2007-02-12 13:38:06 +00:00
|
|
|
Requires: sh-utils textutils grep fileutils /etc/cron.d
|
2011-04-04 10:42:13 +00:00
|
|
|
BuildRequires: lm_sensors-devel
|
2006-06-05 17:52:24 +00:00
|
|
|
BuildRequires: perl %{_includedir}/linux/if.h gettext
|
2010-09-21 08:59:32 +00:00
|
|
|
BuildRequires: autoconf automake
|
2011-09-12 18:34:29 +00:00
|
|
|
BuildRequires: systemd-units
|
|
|
|
Requires(post): systemd-sysv
|
|
|
|
Requires(post): systemd-units
|
|
|
|
Requires(preun): systemd-units
|
|
|
|
Requires(postun): systemd-units
|
2004-09-09 12:54:06 +00:00
|
|
|
|
|
|
|
%description
|
2004-09-09 12:55:52 +00:00
|
|
|
This package provides the sar and iostat commands for Linux. Sar and
|
|
|
|
iostat enable system monitoring of disk, network, and other IO
|
|
|
|
activity.
|
2004-09-09 12:54:06 +00:00
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q
|
2011-04-04 10:15:25 +00:00
|
|
|
%patch12 -p1 -b .ls
|
2007-11-08 14:51:48 +00:00
|
|
|
iconv -f windows-1252 -t utf8 CREDITS > CREDITS.aux
|
|
|
|
mv CREDITS.aux CREDITS
|
2004-09-09 13:02:24 +00:00
|
|
|
|
2004-09-09 12:54:06 +00:00
|
|
|
%build
|
2012-08-01 15:17:40 +00:00
|
|
|
history=28 compressafter=31 ./configure --prefix=%{_prefix} --disable-man-group sa_lib_dir=%{_libdir}/sa --libdir=%{_libdir} --enable-collect-all
|
2004-09-09 12:59:42 +00:00
|
|
|
CFLAGS="$RPM_OPT_FLAGS -DSADC_PATH=\\\"%{_libdir}/sa/sadc\\\""
|
2010-09-21 08:39:01 +00:00
|
|
|
make CFLAGS="$CFLAGS" LFLAGS=""
|
2004-09-09 12:59:42 +00:00
|
|
|
|
2004-09-09 12:54:06 +00:00
|
|
|
%install
|
2010-09-21 08:39:01 +00:00
|
|
|
make install
|
2004-09-09 12:54:06 +00:00
|
|
|
|
2007-11-09 10:36:22 +00:00
|
|
|
mkdir -p %{buildroot}/%{_sysconfdir}/cron.d
|
2011-04-04 10:15:25 +00:00
|
|
|
install -m 0644 cron/sysstat.crond %{buildroot}/%{_sysconfdir}/cron.d/sysstat
|
2011-09-12 18:34:29 +00:00
|
|
|
mkdir -p %{buildroot}%{_unitdir}
|
|
|
|
install -m 0644 %{SOURCE1} %{buildroot}%{_unitdir}/
|
2011-09-13 17:28:28 +00:00
|
|
|
sed -i 's|@LIBDIR@|%{_libdir}|g' %{buildroot}%{_unitdir}/sysstat.service
|
2004-09-09 12:54:06 +00:00
|
|
|
|
2004-09-09 12:55:32 +00:00
|
|
|
%find_lang %{name}
|
|
|
|
|
2004-09-09 13:01:17 +00:00
|
|
|
%post
|
2012-05-16 19:43:21 +00:00
|
|
|
if [ $1 -eq 1 ] ; then
|
|
|
|
# Initial installation
|
|
|
|
/bin/systemctl enable sysstat.service >/dev/null 2>&1 || :
|
2011-09-12 18:34:29 +00:00
|
|
|
fi
|
2004-09-09 13:01:17 +00:00
|
|
|
|
2004-09-09 12:54:06 +00:00
|
|
|
%preun
|
2011-09-12 18:34:29 +00:00
|
|
|
if [ $1 -eq 0 ]; then
|
|
|
|
/bin/systemctl --no-reload disable sysstat.service > /dev/null 2>&1 || :
|
|
|
|
/bin/systemctl stop sysstat.service > /dev/null 2>&1 || :
|
2004-09-09 12:54:06 +00:00
|
|
|
# Remove sa logs if removing sysstat completely
|
2007-11-09 10:36:22 +00:00
|
|
|
rm -f %{_localstatedir}/log/sa/*
|
2004-09-09 12:54:06 +00:00
|
|
|
fi
|
|
|
|
|
2011-09-12 18:34:29 +00:00
|
|
|
%postun
|
|
|
|
/bin/systemctl daemon-reload >/dev/null 2>&1 || :
|
|
|
|
if [ $1 -ge 1 ] ; then
|
|
|
|
# Package upgrade, not uninstall
|
|
|
|
/bin/systemctl try-restart sysstat.service >/dev/null 2>&1 || :
|
|
|
|
fi
|
|
|
|
|
|
|
|
%triggerun -- sysstat < 10.0.2-1
|
|
|
|
# Save the current service runlevel info
|
|
|
|
# User must manually run systemd-sysv-convert --apply sysstat
|
|
|
|
# to migrate them to systemd targets
|
|
|
|
/usr/bin/systemd-sysv-convert --save sysstat >/dev/null 2>&1 ||:
|
|
|
|
|
|
|
|
# Run these because the SysV package being removed won't do them
|
|
|
|
/sbin/chkconfig --del sysstat >/dev/null 2>&1 || :
|
|
|
|
/bin/systemctl try-restart sysstat.service >/dev/null 2>&1 || :
|
|
|
|
|
2004-09-09 12:54:06 +00:00
|
|
|
|
2004-09-09 12:55:32 +00:00
|
|
|
%files -f %{name}.lang
|
2012-08-01 15:17:40 +00:00
|
|
|
%doc CHANGES COPYING CREDITS README FAQ
|
2007-11-09 10:36:22 +00:00
|
|
|
%config(noreplace) %{_sysconfdir}/cron.d/sysstat
|
|
|
|
%config(noreplace) %{_sysconfdir}/sysconfig/sysstat
|
|
|
|
%config(noreplace) %{_sysconfdir}/sysconfig/sysstat.ioconf
|
2011-09-12 18:34:29 +00:00
|
|
|
%{_unitdir}/sysstat.service
|
2004-09-09 12:54:06 +00:00
|
|
|
%{_bindir}/*
|
|
|
|
%{_libdir}/sa
|
|
|
|
%{_mandir}/man1/*
|
2010-09-23 17:18:40 +00:00
|
|
|
%{_mandir}/man5/*
|
2004-09-09 12:54:06 +00:00
|
|
|
%{_mandir}/man8/*
|
2007-11-09 10:36:22 +00:00
|
|
|
%{_localstatedir}/log/sa
|
2004-09-09 12:54:06 +00:00
|
|
|
|
|
|
|
%changelog
|
2012-08-01 15:17:40 +00:00
|
|
|
* Wed Aug 01 2012 Peter Schiffer <pschiffe@redhat.com> - 10.1.1-1
|
|
|
|
- resolves: #844387
|
|
|
|
update to 10.1.1
|
|
|
|
- keep log files for 28 days instead of 7
|
|
|
|
- collect all aditional statistics
|
|
|
|
|
2012-07-21 22:29:16 +00:00
|
|
|
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 10.0.5-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2012-06-19 19:52:01 +00:00
|
|
|
* Tue Jun 19 2012 Peter Schiffer <pschiffe@redhat.com> - 10.0.5-1
|
|
|
|
- resolves: #822867
|
|
|
|
update to 10.0.5
|
|
|
|
|
2012-05-16 19:43:21 +00:00
|
|
|
* Wed May 16 2012 Peter Schiffer <pschiffe@redhat.com> - 10.0.4-1
|
|
|
|
- resolves: #803032
|
|
|
|
update to 10.0.4
|
|
|
|
- resolves: #820725
|
|
|
|
enable sysstat service by default
|
|
|
|
|
2012-01-14 06:09:33 +00:00
|
|
|
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 10.0.3-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
|
|
|
2011-11-30 15:28:06 +00:00
|
|
|
* Wed Nov 30 2011 Peter Schiffer <pschiffe@redhat.com> - 10.0.3-1
|
|
|
|
- resolves: #757687
|
|
|
|
update to 10.0.3
|
|
|
|
|
2011-09-13 17:28:28 +00:00
|
|
|
* Tue Sep 13 2011 Tom Callaway <spot@fedoraproject.org> - 10.0.2-2
|
|
|
|
- fix libdir pathing in systemd service file
|
|
|
|
|
2011-09-12 18:34:29 +00:00
|
|
|
* Mon Sep 12 2011 Tom Callaway <spot@fedoraproject.org> - 10.0.2-1
|
|
|
|
- update to 10.0.2
|
|
|
|
- convert to systemd
|
|
|
|
|
2011-06-07 04:07:28 +00:00
|
|
|
* Tue Jun 7 2011 Ivana Hutarova Varekova <varekova@redhat.com> - 10.0.1-1
|
|
|
|
- update to 10.0.1
|
|
|
|
- remove useles patches
|
|
|
|
|
2011-05-04 06:29:58 +00:00
|
|
|
* Wed May 4 2011 Ivana Hutarova Varekova <varekova@redhat.com> - 10.0.0-4
|
|
|
|
- close the file descriptor in a special situation in read_uoptime function
|
|
|
|
- fix the number on open files in cifsiostat output
|
|
|
|
|
2011-05-02 14:09:20 +00:00
|
|
|
* Mon May 2 2011 Ivana Hutarova Varekova <varekova@redhat.com> - 10.0.0-3
|
|
|
|
- add -h optioon to iostat tool
|
|
|
|
(-h Make the disk stats report easier to read by a human.)
|
|
|
|
|
2011-04-04 13:59:25 +00:00
|
|
|
* Mon Apr 4 2011 Ivana Hutarova Varekova <varekova@redhat.com> - 10.0.0-2
|
|
|
|
- remove unnecessary patch
|
|
|
|
|
2011-04-04 10:15:25 +00:00
|
|
|
* Mon Apr 4 2011 Ivana Hutarova Varekova <varekova@redhat.com> - 10.0.0-1
|
|
|
|
- update to 10.0.0
|
|
|
|
remove obsolete patches
|
|
|
|
remove autoreconfiguration
|
|
|
|
|
2011-02-09 17:33:20 +00:00
|
|
|
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 9.0.6.1-14
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
|
2010-11-22 13:48:20 +00:00
|
|
|
* Mon Nov 22 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 9.0.6.1-13
|
|
|
|
- Resolves: #642280
|
|
|
|
sar -u overflow problem - thanks Michal Srb
|
|
|
|
|
2010-10-07 14:11:58 +00:00
|
|
|
* Thu Oct 7 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 9.0.6.1-12
|
|
|
|
- improve sar thickless kernel support
|
|
|
|
(fix the output per separate cpu "-P ALL" option )
|
|
|
|
|
2010-10-04 10:42:25 +00:00
|
|
|
* Mon Oct 4 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 9.0.6.1-11
|
|
|
|
- resolves: #635646
|
|
|
|
test the output of localtime properly
|
|
|
|
|
2010-09-29 22:19:31 +00:00
|
|
|
* Wed Sep 29 2010 jkeating - 9.0.6.1-10
|
|
|
|
- Rebuilt for gcc bug 634757
|
|
|
|
|
2010-09-23 17:18:40 +00:00
|
|
|
* Thu Sep 23 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 9.0.6.1-9
|
|
|
|
- add the mandir patch
|
|
|
|
- add the possibility to sed sadc cron options
|
|
|
|
|
2010-09-21 08:49:19 +00:00
|
|
|
* Tue Sep 21 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 9.0.6.1-8
|
|
|
|
- add necessary dependency (autoconf), necessary because of patch7
|
|
|
|
|
2010-09-21 08:39:01 +00:00
|
|
|
* Tue Sep 21 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 9.0.6.1-7
|
|
|
|
- remove needless DOCDIR setting
|
|
|
|
- remove needless INIT_DIR setting
|
|
|
|
- fix the problem with --disable-man-group option
|
|
|
|
|
2010-09-08 13:46:28 +00:00
|
|
|
* Wed Sep 8 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 9.0.6.1-6
|
|
|
|
- fix the sar output on tickless kernel
|
|
|
|
|
2010-08-13 12:11:37 +00:00
|
|
|
* Fri Aug 13 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 9.0.6.1-5
|
|
|
|
- remove bogus links description
|
|
|
|
|
2010-07-19 06:38:42 +00:00
|
|
|
* Mon Jul 19 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 9.0.6.1-4
|
|
|
|
- fix sar problem - sysstat can not monitor system status every second
|
|
|
|
|
2010-04-19 09:12:40 +00:00
|
|
|
* Mon Apr 19 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 9.0.6.1-3
|
|
|
|
- fix mpstat tool (when the cpu is switched off)
|
|
|
|
|
2010-04-16 12:42:38 +00:00
|
|
|
* Fri Apr 16 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 9.0.6.1-2
|
|
|
|
- fix the mpstat output on tickless kernel
|
|
|
|
|
2010-03-02 10:54:19 +00:00
|
|
|
* Tue Mar 2 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 9.0.6.1-1
|
|
|
|
- update to 9.0.6.1
|
|
|
|
|
2010-02-16 13:53:28 +00:00
|
|
|
* Tue Feb 16 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 9.0.6-3
|
|
|
|
- fix init script format
|
|
|
|
|
2009-12-11 10:41:10 +00:00
|
|
|
* Fri Dec 11 2009 Ivana Hutarova Varekova <varekova@redhat.com> - 9.0.6-2
|
|
|
|
- fix the problem in get_nfs_mount_nr function
|
|
|
|
( iostat -n causes stack smashing)
|
|
|
|
|
2009-12-02 07:46:45 +00:00
|
|
|
* Wed Dec 2 2009 Ivana Hutarva Varekova <varekova@redhat.com> - 9.0.6-1
|
|
|
|
- update to 9.0.6
|
|
|
|
|
2009-09-15 14:49:20 +00:00
|
|
|
* Tue Sep 15 2009 Ivana Varekova <varekova@redhat.com> - 9.0.4-4
|
2009-09-15 14:48:25 +00:00
|
|
|
- fix init script
|
|
|
|
|
2009-09-14 13:30:48 +00:00
|
|
|
* Mon Sep 14 2009 Ivana Varekova <varekova@redhat.com> - 9.0.4-3
|
|
|
|
- fix init script - add INIT INFO flags (#522740)
|
|
|
|
and add condrestart, try-restart and force-reload (#522743)
|
|
|
|
|
2009-07-27 05:20:48 +00:00
|
|
|
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 9.0.4-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
|
2009-07-20 07:00:21 +00:00
|
|
|
* Mon Jul 20 2009 Ivana Varekova <varekova@redhat.com> - 9.0.4-1
|
|
|
|
- update to 9.0.4
|
|
|
|
|
2009-05-28 10:03:36 +00:00
|
|
|
* Thu May 28 2009 Ivana Varekova <varekova@redhat.com> - 9.0.3-1
|
|
|
|
- update to 9.0.3
|
|
|
|
- remove obsolete patches
|
|
|
|
|
2009-02-26 04:56:48 +00:00
|
|
|
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 8.0.4-7
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
|
|
2008-12-05 10:43:09 +00:00
|
|
|
* Fri Dec 5 2008 Ivana Varekova <varekova@redhat.com> - 8.0.4-6
|
|
|
|
- add /proc/diskstats reading patch
|
|
|
|
|
2008-09-22 07:42:53 +00:00
|
|
|
* Mon Sep 22 2008 Ivana Varekova <varekova@redhat.com> - 8.0.4-5
|
|
|
|
- Resolves: #463066 - Fix Patch0:/%%patch mismatch
|
|
|
|
|
2008-04-23 08:53:48 +00:00
|
|
|
* Wed Apr 23 2008 Ivana Varekova <varekova@redhat.com> - 8.0.4-4
|
|
|
|
- Resolves: #442801 mpstat shows one extra cpu
|
|
|
|
thanks Chris Wright
|
|
|
|
|
2008-03-06 11:34:34 +00:00
|
|
|
* Thu Mar 6 2008 Ivana Varekova <varekova@redhat.com> - 8.0.4-3
|
|
|
|
- add nfs extended statistic to iostat command
|
|
|
|
|
2008-02-28 09:41:12 +00:00
|
|
|
* Thu Feb 28 2008 Ivana Varekova <varekova@redhat.com> - 8.0.4-2
|
|
|
|
- retry write functuon in sadc command - thanks Tomas Mraz
|
|
|
|
|
2008-02-08 09:37:51 +00:00
|
|
|
* Fri Feb 8 2008 Ivana Varekova <varekova@redhat.com> - 8.0.4-1
|
|
|
|
- updated to 8.0.4
|
|
|
|
|
2007-12-03 08:54:43 +00:00
|
|
|
* Mon Dec 3 2007 Ivana Varekova <varekova@redhat.com> - 8.0.3-1
|
|
|
|
- updated to 8.0.3
|
|
|
|
|
2007-11-09 10:36:22 +00:00
|
|
|
* Fri Nov 9 2007 Ivana Varekova <varekova@redhat.com> - 8.0.2-3
|
|
|
|
- used macros instead of var, etc
|
|
|
|
|
2007-11-08 14:51:48 +00:00
|
|
|
* Thu Nov 8 2007 Ivana Varekova <varekova@redhat.com> - 8.0.2-2
|
|
|
|
- change license tag
|
|
|
|
- remove sysstat.crond source (add -d)
|
|
|
|
- remove obsolete sysconfig file
|
|
|
|
- spec file cleanup
|
|
|
|
|
2007-11-05 14:25:50 +00:00
|
|
|
* Mon Nov 5 2007 Ivana Varekova <varekova@redhat.com> - 8.0.2-1
|
|
|
|
- update 8.0.2
|
|
|
|
- spec file cleanup
|
|
|
|
|
2007-10-24 07:07:28 +00:00
|
|
|
* Wed Oct 24 2007 Ivana Varekova <varekova@redhat.com> - 8.0.1-2
|
|
|
|
- remove useless patches
|
|
|
|
|
2007-10-22 17:18:44 +00:00
|
|
|
* Mon Oct 22 2007 Ivana Varekova <varekova@redhat.com> - 8.0.1-1
|
|
|
|
- update to 8.0.1
|
|
|
|
- remove useless patches
|
|
|
|
- spec file cleanup
|
2007-10-22 17:40:00 +00:00
|
|
|
- remove smp build flag (ar problem)
|
2007-10-22 17:56:01 +00:00
|
|
|
- add libdir flags
|
2007-10-22 17:18:44 +00:00
|
|
|
|
2007-08-15 13:39:19 +00:00
|
|
|
* Wed Aug 15 2007 Ivana Varekova <varekova@redhat.com> - 7.0.4-3
|
|
|
|
- fix cve-2007-3852 -
|
|
|
|
sysstat insecure temporary file usage
|
|
|
|
|
2007-03-23 10:54:28 +00:00
|
|
|
* Fri Mar 23 2007 Ivana Varekova <varekova@redhat.com> - 7.0.4-2
|
|
|
|
- fix sa2 problem (sa2 works wrong when the /var/log/sa file is
|
|
|
|
a link to another directory)
|
|
|
|
|
2007-02-12 13:38:06 +00:00
|
|
|
* Mon Feb 12 2007 Ivana Varekova <varekova@redhat.com> - 7.0.4-1
|
|
|
|
- update to 7.0.4
|
|
|
|
- spec file cleanup
|
|
|
|
|
2007-01-30 13:30:21 +00:00
|
|
|
* Tue Jan 30 2007 Ivana Varekova <varekova@redhat.com> - 7.0.3-3
|
|
|
|
- remove -s flag
|
2007-01-30 12:54:44 +00:00
|
|
|
|
|
|
|
* Mon Dec 18 2006 Ivana Varekova <varekova@redhat.com> - 7.0.3-1
|
2006-12-18 15:14:36 +00:00
|
|
|
- update to 7.0.3
|
|
|
|
|
2006-11-21 15:34:11 +00:00
|
|
|
* Tue Nov 21 2006 Ivana Varekova <varekova@redhat.com> - 7.0.2-3
|
|
|
|
- update NFS mount statistic patch
|
|
|
|
|
2006-11-08 11:41:36 +00:00
|
|
|
* Wed Nov 8 2006 Ivana Varekova <varekova@redhat.com> - 7.0.2-1
|
|
|
|
- update to 7.0.2
|
|
|
|
|
2006-10-26 09:12:15 +00:00
|
|
|
* Thu Oct 26 2006 Ivana Varekova <varekova@redhat.com> - 7.0.0-3
|
|
|
|
- move tmp file (#208433)
|
|
|
|
|
2006-10-09 12:30:34 +00:00
|
|
|
* Mon Oct 9 2006 Ivana Varekova <varekova@redhat.com> - 7.0.0-2
|
|
|
|
- add NFS mount statistic (#184321)
|
|
|
|
|
2006-07-14 07:25:46 +00:00
|
|
|
* Fri Jul 14 2006 Marcela Maslanova <mmaslano@redhat.com> - 7.0.0-1
|
|
|
|
- new version 7.0.0
|
|
|
|
|
2006-07-12 08:21:36 +00:00
|
|
|
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 6.0.2-2.1
|
|
|
|
- rebuild
|
|
|
|
|
2006-06-05 17:52:24 +00:00
|
|
|
* Mon Jun 5 2006 Jesse Keating <jkeating@redhat.com> 6.0.2-2
|
|
|
|
- Add missing BR of gettext
|
|
|
|
|
2006-05-05 14:20:43 +00:00
|
|
|
* Fri May 5 2006 Ivana Varekova <varekova@redhat.com> 6.0.2-1
|
|
|
|
- update to 6.0.2
|
2006-05-11 10:17:58 +00:00
|
|
|
- remove asm/page.h used sysconf command to get PAGE_SIZE
|
2006-05-05 14:20:43 +00:00
|
|
|
|
2006-02-11 05:46:28 +00:00
|
|
|
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 6.0.1-3.2.1
|
|
|
|
- bump again for double-long bug on ppc(64)
|
|
|
|
|
2006-02-07 13:55:57 +00:00
|
|
|
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 6.0.1-3.2
|
|
|
|
- rebuilt for new gcc4.1 snapshot and glibc changes
|
|
|
|
|
2005-12-09 22:43:23 +00:00
|
|
|
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
2005-10-11 11:57:37 +00:00
|
|
|
* Tue Oct 11 2005 Ivana Varekova <varekova@redhat.com> 6.0.1-3
|
|
|
|
- add FAQ to documentation (bug 170158)
|
|
|
|
|
2005-10-10 15:49:36 +00:00
|
|
|
* Mon Oct 10 2005 Ivana Varekova <varekova@redhat.com> 6.0.1-2
|
|
|
|
- fix chkconfig problem
|
|
|
|
|
2005-10-07 13:46:22 +00:00
|
|
|
* Fri Oct 7 2005 Ivana Varekova <varekova@redhat.com> 6.0.1-1
|
|
|
|
- version 6.0.1
|
|
|
|
|
2005-08-18 12:00:06 +00:00
|
|
|
* Thu Aug 18 2005 Florian La Roche <laroche@redhat.com>
|
|
|
|
- no need to kernel kernel 2.2 or newer anymore
|
|
|
|
|
2005-05-10 14:48:59 +00:00
|
|
|
* Tue May 10 2005 Ivana Varekova <varekova@redhat.com> 5.0.5-10.fc
|
|
|
|
- add debug files to debug_package
|
|
|
|
|
2005-03-07 08:29:39 +00:00
|
|
|
* Mon Mar 7 2005 Ivana Varekova <varekova@redhat.com> 5.0.5-9.fc
|
2005-03-07 12:34:37 +00:00
|
|
|
- rebuilt (add gcc4fix, update lib64ini)
|
2005-03-07 08:02:56 +00:00
|
|
|
|
2005-03-04 13:26:10 +00:00
|
|
|
* Fri Mar 4 2005 Ivana Varekova <varekova@redhat.ccm> 5.0.5-7.fc
|
2005-03-07 08:29:39 +00:00
|
|
|
- rebuilt
|
2005-03-04 13:13:57 +00:00
|
|
|
|
2004-10-04 19:31:42 +00:00
|
|
|
* Thu Sep 30 2004 Charles Bennett <ccb@redhat.com> 5.0.5-5.fc
|
|
|
|
- bring in filename and append-msg patch
|
|
|
|
- append-msg adds verbose text for when saNN data file cpu count
|
|
|
|
- does not match cpu count on the currently running system
|
|
|
|
|
2004-09-09 13:03:03 +00:00
|
|
|
* Wed Jun 30 2004 Nils Philippsen <nphilipp@redhat.com>
|
|
|
|
- version 5.0.5
|
|
|
|
- remove some obsolete patches
|
|
|
|
- update statreset, overrun, lib64init patches
|
|
|
|
- renumber patches
|
|
|
|
|
|
|
|
* Wed Jun 16 2004 Alan Cox <alan@redhat.com>
|
|
|
|
- Fix spew of crap to console at startup
|
|
|
|
- Fix order of startup (#124035)
|
|
|
|
- Fix array overrun (#117182)
|
|
|
|
- Fix interrupt buffer sizing (caused bogus irq info)
|
|
|
|
|
2004-09-09 13:02:33 +00:00
|
|
|
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
2004-09-09 13:02:24 +00:00
|
|
|
* Wed Mar 24 2004 Justin Forbes <64bit_fedora@comcast.net> 5.0.1-2
|
|
|
|
- fix lib64 init
|
|
|
|
|
2004-09-09 13:01:57 +00:00
|
|
|
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
|
|
|
* Wed Feb 18 2004 Nils Philippsen <nphilipp@redhat.com> 5.0.1-1
|
|
|
|
- version 5.0.1
|
|
|
|
- update statreset patch
|
|
|
|
|
|
|
|
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
2004-09-09 13:01:17 +00:00
|
|
|
* Thu Jan 22 2004 Nils Philippsen <nphilipp@redhat.com> 5.0.0-0.6
|
|
|
|
- let user configure how long to keep logs through /etc/sysconfig/sysstat
|
|
|
|
(#81294)
|
|
|
|
- reset stats at system boot (#102445)
|
|
|
|
|
|
|
|
* Wed Jan 21 2004 Nils Philippsen <nphilipp@redhat.com> 5.0.0-0.5
|
|
|
|
- fix ifnamsiz patch for s390x (hopefully)
|
|
|
|
|
|
|
|
* Tue Jan 20 2004 Nils Philippsen <nphilipp@redhat.com> 5.0.0-0.4
|
|
|
|
- fix insecure tmp files in scripts (#78212)
|
|
|
|
- require tools needed in scripts
|
2007-11-08 14:51:48 +00:00
|
|
|
- use IFNAMSIZ from {_includedir}/linux/if.h for maximum interface length
|
2004-09-09 13:01:17 +00:00
|
|
|
|
|
|
|
* Mon Jan 12 2004 Nils Philippsen <nphilipp@redhat.com> 5.0.0-0.3
|
|
|
|
- Buildrequires: perl
|
|
|
|
- check for %%_lib == lib64 instead of specific arches
|
|
|
|
|
|
|
|
* Mon Jan 12 2004 Nils Philippsen <nphilipp@redhat.com> 5.0.0-0.2
|
|
|
|
- fix dealing with lib64 case of cron.d file
|
|
|
|
|
|
|
|
* Mon Jan 12 2004 Nils Philippsen <nphilipp@redhat.com> 5.0.0-0.1
|
|
|
|
- version 5.0.0
|
|
|
|
|
2004-09-09 13:01:06 +00:00
|
|
|
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
|
|
|
* Mon Mar 3 2003 Joe Orton <jorton@redhat.com> 4.0.7-4
|
|
|
|
- really fix paths for multilib (#82913)
|
2004-09-09 12:59:42 +00:00
|
|
|
|
2004-09-09 12:59:26 +00:00
|
|
|
* Wed Feb 19 2003 Bill Nottingham <notting@redhat.com> 4.0.7-3
|
|
|
|
- fix paths on multilib arches (#82913)
|
|
|
|
|
|
|
|
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
|
|
|
* Sat Nov 23 2002 Mike A. Harris <mharris@redhat.com> 4.0.7-1
|
|
|
|
- Updated to new upstream version 4.0.7
|
|
|
|
|
|
|
|
* Tue Nov 19 2002 Mike A. Harris <mharris@redhat.com> 4.0.5-7
|
|
|
|
- Fixed files installed in /usr/doc to be put in correct place
|
|
|
|
|
|
|
|
* Tue Oct 8 2002 Mike A. Harris <mharris@redhat.com> 4.0.5-6
|
|
|
|
- All-arch rebuild
|
|
|
|
|
2007-02-12 13:38:06 +00:00
|
|
|
* Tue Jul 23 2002 Trond Eivind Glomsrød <teg@redhat.com> 4.0.5-3
|
2004-09-09 12:59:18 +00:00
|
|
|
- Rebuild
|
|
|
|
|
2004-09-09 12:59:07 +00:00
|
|
|
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
|
|
|
|
- automated rebuild
|
|
|
|
|
2007-02-12 13:38:06 +00:00
|
|
|
* Mon Jun 17 2002 Trond Eivind Glomsrød <teg@redhat.com> 4.0.5-1
|
2004-09-09 12:59:07 +00:00
|
|
|
- 4.0.5-1
|
|
|
|
- isag is no longer installed by default upstream, removing
|
|
|
|
requirement on gnuplot
|
|
|
|
|
|
|
|
* Thu May 23 2002 Tim Powers <timp@redhat.com>
|
|
|
|
- automated rebuild
|
|
|
|
|
2007-02-12 13:38:06 +00:00
|
|
|
* Mon Apr 22 2002 Trond Eivind Glomsrød <teg@redhat.com> 4.0.4-1
|
2004-09-09 12:59:07 +00:00
|
|
|
- 4.0.4
|
|
|
|
- Add an explicit requires on gnuplot (#63474)
|
|
|
|
|
2007-02-12 13:38:06 +00:00
|
|
|
* Fri Apr 12 2002 Trond Eivind Glomsrød <teg@redhat.com> 4.0.3-2
|
2004-09-09 12:58:48 +00:00
|
|
|
- Do the daily sa2 run just before midnight, not at 4AM... you'd
|
|
|
|
only get 4 hours worth of data that way (#63132)
|
|
|
|
|
2007-02-12 13:38:06 +00:00
|
|
|
* Thu Feb 28 2002 Trond Eivind Glomsrød <teg@redhat.com> 4.0.3-1
|
2004-09-09 12:58:35 +00:00
|
|
|
- 4.0.3
|
|
|
|
|
2007-02-12 13:38:06 +00:00
|
|
|
* Wed Feb 27 2002 Trond Eivind Glomsrød <teg@redhat.com> 4.0.2-3
|
2004-09-09 12:58:35 +00:00
|
|
|
- Rebuild
|
|
|
|
|
|
|
|
* Wed Jan 09 2002 Tim Powers <timp@redhat.com>
|
|
|
|
- automated rebuild
|
|
|
|
|
2007-02-12 13:38:06 +00:00
|
|
|
* Wed Dec 12 2001 Trond Eivind Glomsrød <teg@redhat.com> 4.0.2-1
|
2004-09-09 12:58:35 +00:00
|
|
|
- 4.0.2
|
|
|
|
- the kernel patch for extended statistics is in, don't say it needs
|
|
|
|
applying in the man page
|
2004-09-09 12:56:24 +00:00
|
|
|
|
2004-09-09 12:55:52 +00:00
|
|
|
* Mon Aug 13 2001 Preston Brown <pbrown@redhat.com>
|
|
|
|
- be more verbose about which files are corrupt (#47122)
|
|
|
|
|
2004-09-09 12:55:38 +00:00
|
|
|
* Mon Jul 2 2001 Preston Brown <pbrown@redhat.com>
|
|
|
|
- run sa1 from cron.d to fix run-parts interaction problem (#37733)
|
|
|
|
|
|
|
|
* Fri Jun 29 2001 Preston Brown <pbrown@redhat.com>
|
|
|
|
- upgrade to 4.0.1 stable release
|
|
|
|
|
|
|
|
* Sun Jun 24 2001 Elliot Lee <sopwith@redhat.com>
|
|
|
|
- Bump release + rebuild.
|
|
|
|
|
2004-09-09 12:55:32 +00:00
|
|
|
* Sun Apr 8 2001 Preston Brown <pbrown@redhat.com>
|
|
|
|
- explicitly set safe umask (#35142)
|
|
|
|
|
|
|
|
* Fri Mar 9 2001 Preston Brown <pbrown@redhat.com>
|
|
|
|
- iostat disk utilization was off by a factor of 10.
|
|
|
|
|
|
|
|
* Wed Feb 14 2001 Preston Brown <pbrown@redhat.com>
|
|
|
|
- 3.3.5 brings us full support for kernel IO stats
|
|
|
|
|
|
|
|
* Tue Jan 30 2001 Preston Brown <pbrown@redhat.com>
|
|
|
|
- Summarize previous day's activity with sa2, not current day (which is only 4 hours of data when it gets run) (#24820)
|
|
|
|
- upgrade to 3.3.4 for full 2.4 compatibility and improved iostat
|
|
|
|
|
2004-09-09 12:54:55 +00:00
|
|
|
* Tue Jan 17 2001 Preston Brown <pbrown@redhat.com>
|
|
|
|
- iostat man page fixes
|
|
|
|
|
|
|
|
* Fri Jan 05 2001 Preston Brown <pbrown@redhat.com>
|
|
|
|
- 3.3.3, crontab fixes
|
|
|
|
|
|
|
|
* Fri Dec 29 2000 Bill Nottingham <notting@redhat.com>
|
|
|
|
- fix prereqs
|
|
|
|
|
2004-09-09 12:54:11 +00:00
|
|
|
* Fri Oct 13 2000 Preston Brown <pbrown@redhat.com>
|
|
|
|
- crontab entry was still incorrect. Fixed.
|
|
|
|
|
|
|
|
* Mon Oct 09 2000 Preston Brown <pbrown@redhat.com>
|
|
|
|
- make sure disk accounting is enabled to fix iostat -l, -p (#16268)
|
|
|
|
- crontab entries were missing the user (root) to run as (#18212)
|
|
|
|
|
2004-09-09 12:54:06 +00:00
|
|
|
* Tue Aug 22 2000 Preston Brown <pbrown@redhat.com>
|
|
|
|
- enable IO accounting now that kernel supports it
|
|
|
|
|
|
|
|
* Wed Aug 16 2000 Nalin Dahyabhai <nalin@redhat.com>
|
|
|
|
- fix buildrooting (#16271)
|
|
|
|
|
|
|
|
* Tue Aug 08 2000 Preston Brown <pbrown@redhat.com>
|
|
|
|
- bugfixes in 3.2.4 cause our inclusion. :)
|
|
|
|
|
|
|
|
* Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
|
|
|
|
- automatic rebuild
|
|
|
|
|
|
|
|
* Thu Jun 29 2000 Preston Brown <pbrown@redhat.com>
|
|
|
|
- 3.2.3 fixes SMP race condition
|
|
|
|
|
|
|
|
* Tue Jun 20 2000 Preston Brown <pbrown@redhat.com>
|
|
|
|
- FHS macros
|
|
|
|
- 3.2.2
|
|
|
|
|
|
|
|
* Fri May 26 2000 Preston Brown <pbrown@redhat.com>
|
|
|
|
- packaged for Winston
|
|
|
|
- change va patch to indicate kernel is not patched for iostat accounting.
|
|
|
|
re-enable if our stock kernel gets this patch.
|
|
|
|
- upgrade to 3.2.
|
|
|
|
- install crontab entry.
|
|
|
|
|
|
|
|
* Sun Dec 12 1999 Ian Macdonald <ian@caliban.org>
|
|
|
|
- upgraded to 2.2
|
|
|
|
|
|
|
|
* Fri Oct 29 1999 Ian Macdonald <ian@caliban.org>
|
|
|
|
- first RPM release (2.1)
|