2012-11-13 13:56:51 +00:00
|
|
|
Summary: Collection of performance monitoring tools for Linux
|
2004-09-09 12:54:06 +00:00
|
|
|
Name: sysstat
|
2017-05-17 11:38:22 +00:00
|
|
|
Version: 11.5.6
|
2017-03-28 11:57:12 +00:00
|
|
|
Release: 1%{?dist}
|
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/
|
2013-11-11 13:11:58 +00:00
|
|
|
Source: http://pagesperso-orange.fr/sebastien.godard/%{name}-%{version}.tar.xz
|
2012-11-13 13:56:51 +00:00
|
|
|
|
2015-10-02 13:19:23 +00:00
|
|
|
# Use colors in sysstat output
|
|
|
|
Source10: colorsysstat.csh
|
|
|
|
Source11: colorsysstat.sh
|
|
|
|
|
2015-01-15 13:53:00 +00:00
|
|
|
BuildRequires: gettext, lm_sensors-devel, systemd
|
|
|
|
|
2015-03-02 12:30:03 +00:00
|
|
|
Requires: findutils, xz
|
2015-01-15 13:53:00 +00:00
|
|
|
Requires(post): systemd
|
2012-11-13 12:52:19 +00:00
|
|
|
Requires(preun): systemd
|
|
|
|
Requires(postun): systemd
|
2004-09-09 12:54:06 +00:00
|
|
|
|
|
|
|
%description
|
2016-02-29 15:34:20 +00:00
|
|
|
The sysstat package contains the sar, sadf, mpstat, iostat, tapestat,
|
|
|
|
pidstat, cifsiostat and sa tools for Linux.
|
2015-01-15 13:53:00 +00:00
|
|
|
The sar command collects and reports system activity information.
|
|
|
|
The information collected by sar can be saved in a file in a binary
|
|
|
|
format for future inspection. The statistics reported by sar concern
|
|
|
|
I/O transfer rates, paging activity, process-related activities,
|
|
|
|
interrupts, network activity, memory and swap space utilization, CPU
|
|
|
|
utilization, kernel activities and TTY statistics, among others. Both
|
|
|
|
UP and SMP machines are fully supported.
|
|
|
|
The sadf command may be used to display data collected by sar in
|
|
|
|
various formats (CSV, XML, etc.).
|
2012-11-13 13:56:51 +00:00
|
|
|
The iostat command reports CPU utilization and I/O statistics for disks.
|
2016-02-29 15:34:20 +00:00
|
|
|
The tapestat command reports statistics for tapes connected to the system.
|
2012-11-13 13:56:51 +00:00
|
|
|
The mpstat command reports global and per-processor statistics.
|
|
|
|
The pidstat command reports statistics for Linux tasks (processes).
|
2016-02-29 15:34:20 +00:00
|
|
|
The cifsiostat command reports I/O statistics for CIFS file systems.
|
2004-09-09 12:54:06 +00:00
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q
|
2004-09-09 13:02:24 +00:00
|
|
|
|
2004-09-09 12:54:06 +00:00
|
|
|
%build
|
2016-01-20 11:54:30 +00:00
|
|
|
%configure \
|
|
|
|
--enable-install-cron \
|
|
|
|
--enable-copy-only \
|
|
|
|
--disable-file-attr \
|
|
|
|
--disable-stripping \
|
|
|
|
--docdir=%{_pkgdocdir} \
|
|
|
|
sadc_options='-S DISK' \
|
|
|
|
history=28 \
|
|
|
|
compressafter=31
|
2013-10-25 17:01:39 +00:00
|
|
|
make %{?_smp_mflags}
|
2004-09-09 12:59:42 +00:00
|
|
|
|
2004-09-09 12:54:06 +00:00
|
|
|
%install
|
2015-03-02 12:30:03 +00:00
|
|
|
%make_install
|
2004-09-09 12:55:32 +00:00
|
|
|
%find_lang %{name}
|
|
|
|
|
2015-10-02 13:19:23 +00:00
|
|
|
# Colored sysstat output
|
|
|
|
mkdir -p %{buildroot}%{_sysconfdir}/profile.d
|
|
|
|
install -p -m 644 %{SOURCE10} %{buildroot}%{_sysconfdir}/profile.d
|
|
|
|
install -p -m 644 %{SOURCE11} %{buildroot}%{_sysconfdir}/profile.d
|
|
|
|
|
2004-09-09 13:01:17 +00:00
|
|
|
%post
|
2014-05-27 15:28:53 +00:00
|
|
|
%systemd_post sysstat.service sysstat-collect.timer sysstat-summary.timer
|
2004-09-09 13:01:17 +00:00
|
|
|
|
2004-09-09 12:54:06 +00:00
|
|
|
%preun
|
2014-05-27 15:28:53 +00:00
|
|
|
%systemd_preun sysstat.service sysstat-collect.timer sysstat-summary.timer
|
2012-11-13 13:56:51 +00:00
|
|
|
if [[ $1 -eq 0 ]]; then
|
2015-01-15 13:53:00 +00:00
|
|
|
# Remove sa logs if removing sysstat completely
|
|
|
|
rm -rf %{_localstatedir}/log/sa/*
|
2004-09-09 12:54:06 +00:00
|
|
|
fi
|
|
|
|
|
2011-09-12 18:34:29 +00:00
|
|
|
%postun
|
2014-05-27 15:28:53 +00:00
|
|
|
%systemd_postun sysstat.service sysstat-collect.timer sysstat-summary.timer
|
2011-09-12 18:34:29 +00:00
|
|
|
|
2004-09-09 12:55:32 +00:00
|
|
|
%files -f %{name}.lang
|
2017-03-28 11:57:12 +00:00
|
|
|
%doc CHANGES COPYING CREDITS FAQ.md README.md %{name}-%{version}.lsm
|
2007-11-09 10:36:22 +00:00
|
|
|
%config(noreplace) %{_sysconfdir}/sysconfig/sysstat
|
|
|
|
%config(noreplace) %{_sysconfdir}/sysconfig/sysstat.ioconf
|
2016-02-29 15:34:20 +00:00
|
|
|
%config(noreplace) %{_sysconfdir}/profile.d/*
|
2004-09-09 12:54:06 +00:00
|
|
|
%{_bindir}/*
|
|
|
|
%{_libdir}/sa
|
2015-01-15 13:53:00 +00:00
|
|
|
%{_unitdir}/sysstat*
|
|
|
|
%{_mandir}/man*/*
|
2007-11-09 10:36:22 +00:00
|
|
|
%{_localstatedir}/log/sa
|
2004-09-09 12:54:06 +00:00
|
|
|
|
|
|
|
%changelog
|
2017-05-17 11:38:22 +00:00
|
|
|
* Wed May 17 2017 Peter Schiffer <pschiffe@redhat.com> - 11.5.6-1
|
|
|
|
- resolves: #1450710
|
|
|
|
updated to 11.5.6
|
|
|
|
|
2017-03-28 11:57:12 +00:00
|
|
|
* Tue Mar 28 2017 Peter Schiffer <pschiffe@redhat.com> - 11.5.5-1
|
|
|
|
- resolves: #1427351
|
|
|
|
updated to 11.5.5
|
|
|
|
|
2017-02-11 14:22:23 +00:00
|
|
|
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 11.5.4-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
|
|
2017-01-30 14:34:54 +00:00
|
|
|
* Mon Jan 30 2017 Peter Schiffer <pschiffe@redhat.com> - 11.5.4-1
|
|
|
|
- resolves: #1413365
|
|
|
|
updated to 11.5.4
|
|
|
|
|
2017-01-03 16:42:55 +00:00
|
|
|
* Tue Jan 3 2017 Peter Schiffer <pschiffe@redhat.com> - 11.5.3-1
|
|
|
|
- resolves: #1402178
|
|
|
|
updated to 11.5.3
|
|
|
|
|
2016-11-28 16:52:38 +00:00
|
|
|
* Mon Nov 28 2016 Peter Schiffer <pschiffe@redhat.com> - 11.5.2-1
|
|
|
|
- resolves: #1392729
|
|
|
|
updated to 11.5.2
|
|
|
|
|
2016-09-27 15:37:59 +00:00
|
|
|
* Tue Sep 27 2016 Peter Schiffer <pschiffe@redhat.com> - 11.5.1-1
|
|
|
|
- updated to 11.5.1
|
|
|
|
|
2016-09-01 14:47:58 +00:00
|
|
|
* Thu Sep 1 2016 Peter Schiffer <pschiffe@redhat.com> - 11.4.0-1
|
|
|
|
- resolves: #1370820
|
|
|
|
updated to 11.4.0
|
|
|
|
|
2016-06-30 14:12:50 +00:00
|
|
|
* Thu Jun 30 2016 Peter Schiffer <pschiffe@redhat.com> - 11.3.5-1
|
|
|
|
- updated to 11.3.5
|
|
|
|
|
2016-05-24 17:14:22 +00:00
|
|
|
* Tue May 24 2016 Peter Schiffer <pschiffe@redhat.com> - 11.3.4-1
|
|
|
|
- resolves: #1336188
|
|
|
|
updated to 11.3.4
|
|
|
|
|
2016-04-29 22:39:41 +00:00
|
|
|
* Sat Apr 30 2016 Peter Schiffer <pschiffe@redhat.com> - 11.3.3-1
|
|
|
|
- updated to 11.3.3
|
|
|
|
|
2016-03-31 13:24:11 +00:00
|
|
|
* Thu Mar 31 2016 Peter Schiffer <pschiffe@redhat.com> - 11.3.2-1
|
|
|
|
- resolves: #1317717
|
|
|
|
updated to 11.3.2
|
|
|
|
|
2016-02-29 15:34:20 +00:00
|
|
|
* Mon Feb 29 2016 Peter Schiffer <pschiffe@redhat.com> - 11.3.1-1
|
|
|
|
- resolves: #1310920
|
|
|
|
updated to 11.3.1
|
|
|
|
|
2016-02-05 01:08:48 +00:00
|
|
|
* Fri Feb 05 2016 Fedora Release Engineering <releng@fedoraproject.org> - 11.2.0-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
|
2016-01-20 11:54:30 +00:00
|
|
|
* Wed Jan 20 2016 Peter Schiffer <pschiffe@redhat.com> - 11.2.0-1
|
|
|
|
- resolves: #1296762
|
|
|
|
updated to 11.2.0
|
|
|
|
|
2015-11-02 12:08:58 +00:00
|
|
|
* Mon Nov 2 2015 Peter Schiffer <pschiffe@redhat.com> - 11.1.8-1
|
|
|
|
- resolves: #1274940
|
|
|
|
updated to 11.1.8
|
|
|
|
|
2015-10-02 13:19:23 +00:00
|
|
|
* Fri Oct 2 2015 Peter Schiffer <pschiffe@redhat.com> - 11.1.7-1
|
|
|
|
- resolves: #1264895
|
|
|
|
updated to 11.1.7
|
|
|
|
- added colors to sysstat output
|
|
|
|
|
2015-08-31 13:37:40 +00:00
|
|
|
* Mon Aug 31 2015 Peter Schiffer <pschiffe@redhat.com> - 11.1.6-1
|
|
|
|
- resolves: #1256784
|
|
|
|
updated to 11.1.6
|
|
|
|
|
2015-06-29 11:46:04 +00:00
|
|
|
* Mon Jun 29 2015 Peter Schiffer <pschiffe@redhat.com> - 11.1.5-1
|
|
|
|
- resolves: #1231242
|
|
|
|
updated to 11.1.5
|
|
|
|
|
2015-06-19 02:20:39 +00:00
|
|
|
* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 11.1.4-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
|
2015-04-10 09:34:32 +00:00
|
|
|
* Fri Apr 10 2015 Peter Schiffer <pschiffe@redhat.com> - 11.1.4-1
|
|
|
|
- resolves: #1210532
|
|
|
|
updated to 11.1.4
|
|
|
|
|
2015-03-02 12:30:03 +00:00
|
|
|
* Mon Mar 02 2015 Peter Schiffer <pschiffe@redhat.com> - 11.1.3-1
|
|
|
|
- resolves: #1193434
|
|
|
|
updated to 11.1.3
|
|
|
|
|
2015-01-22 09:28:50 +00:00
|
|
|
* Thu Jan 22 2015 Dan Horák <dan[at]danny.cz> - 11.1.2-3
|
|
|
|
- fix 64-bit builds on non-x86 arches
|
|
|
|
|
2015-01-15 13:53:00 +00:00
|
|
|
* Thu Jan 15 2015 Peter Schiffer <pschiffe@redhat.com> - 11.1.2-2
|
|
|
|
- cleaned .spec file
|
|
|
|
|
2014-10-20 16:25:08 +00:00
|
|
|
* Mon Oct 20 2014 Peter Schiffer <pschiffe@redhat.com> - 11.1.2-1
|
|
|
|
- resolves: #1154601
|
|
|
|
updated to 11.1.2
|
|
|
|
|
2014-09-04 14:03:09 +00:00
|
|
|
* Thu Sep 4 2014 Peter Schiffer <pschiffe@redhat.com> - 11.1.1-1
|
|
|
|
- resolves: #1138294
|
|
|
|
updated to 11.1.1
|
|
|
|
|
2014-08-21 17:53:09 +00:00
|
|
|
* Thu Aug 21 2014 Kevin Fenzi <kevin@scrye.com> - 11.0.0-3
|
|
|
|
- Rebuild for rpm bug 1131960
|
|
|
|
|
2014-08-18 04:37:07 +00:00
|
|
|
* Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 11.0.0-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
|
|
2014-06-18 17:42:24 +00:00
|
|
|
* Wed Jun 18 2014 Peter Schiffer <pschiffe@redhat.com> - 11.0.0-1
|
|
|
|
- updated to 11.0.0
|
|
|
|
|
2014-06-08 07:55:34 +00:00
|
|
|
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 10.3.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
2014-05-27 15:28:53 +00:00
|
|
|
* Tue May 27 2014 Peter Schiffer <pschiffe@redhat.com> - 10.3.1-1
|
|
|
|
- resolves: #1077640
|
|
|
|
updated to 10.3.1
|
|
|
|
migrated to systemd timer units
|
|
|
|
|
2014-01-27 16:45:20 +00:00
|
|
|
* Mon Jan 27 2014 Peter Schiffer <pschiffe@redhat.com> - 10.2.1-1
|
|
|
|
- resolves: #1057547
|
|
|
|
updated to 10.2.1
|
|
|
|
|
2013-11-11 13:11:58 +00:00
|
|
|
* Mon Nov 11 2013 Peter Schiffer <pschiffe@redhat.com> - 10.2.0-1
|
|
|
|
- resolves: #1026244
|
|
|
|
updated to 10.2.0
|
|
|
|
|
2013-10-25 17:01:39 +00:00
|
|
|
* Fri Oct 25 2013 Peter Schiffer <pschiffe@redhat.com> - 10.1.7-1
|
|
|
|
- resolves: #1007794
|
|
|
|
updated to 10.1.7
|
|
|
|
|
2013-08-14 12:33:13 +00:00
|
|
|
* Wed Aug 14 2013 Peter Schiffer <pschiffe@redhat.com> - 10.1.6-1
|
|
|
|
- resolves: #972508
|
|
|
|
updated to 10.1.6
|
|
|
|
- resolves: #993394
|
|
|
|
fixed FTBFS (added BR on systemd)
|
|
|
|
- install the docs in the new pkgdocdir
|
|
|
|
(thanks to Mathieu Bridon <bochecha@fedoraproject.org> for the patch)
|
|
|
|
|
2013-08-04 16:23:18 +00:00
|
|
|
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 10.1.5-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
|
2013-04-05 12:05:18 +00:00
|
|
|
* Fri Apr 5 2013 Peter Schiffer <pschiffe@redhat.com> - 10.1.5-1
|
|
|
|
- resolves: #919581
|
|
|
|
updated to 10.1.5
|
|
|
|
- collect disk statistics by default
|
|
|
|
|
2013-02-15 01:08:35 +00:00
|
|
|
* Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 10.1.3-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
|
|
2013-01-02 16:14:49 +00:00
|
|
|
* Wed Jan 2 2013 Peter Schiffer <pschiffe@redhat.com> - 10.1.3-1
|
|
|
|
- resolves: #890425
|
|
|
|
updated to 10.1.3
|
|
|
|
|
2012-12-03 16:47:22 +00:00
|
|
|
* Mon Dec 3 2012 Peter Schiffer <pschiffe@redhat.com> - 10.1.2-2
|
|
|
|
- added new -y option to iostat command to skip first since boot report if
|
|
|
|
displaying multiple reports
|
|
|
|
|
2012-11-13 10:12:25 +00:00
|
|
|
* Tue Nov 13 2012 Peter Schiffer <pschiffe@redhat.com> - 10.1.2-1
|
|
|
|
- resolves: #863791
|
|
|
|
updated to 10.1.2
|
2012-11-13 12:52:19 +00:00
|
|
|
- resolves: #850333
|
|
|
|
migrated to the new systemd-rpm macros
|
2012-11-13 13:56:51 +00:00
|
|
|
- cleaned .spec file
|
2012-11-13 10:12:25 +00:00
|
|
|
|
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
|
2016-02-29 15:34:20 +00:00
|
|
|
- improve sar thickless kernel support
|
2010-10-07 14:11:58 +00:00
|
|
|
(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
|
|
|
|
|
2016-02-29 15:34:20 +00:00
|
|
|
* Wed Apr 23 2008 Ivana Varekova <varekova@redhat.com> - 8.0.4-4
|
2008-04-23 08:53:48 +00:00
|
|
|
- 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
|
2016-02-29 15:34:20 +00:00
|
|
|
- used macros instead of var, etc
|
2007-11-09 10:36:22 +00:00
|
|
|
|
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)
|
2016-02-29 15:34:20 +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
|
2016-02-29 15:34:20 +00:00
|
|
|
- fix sa2 problem (sa2 works wrong when the /var/log/sa file is
|
2007-03-23 10:54:28 +00:00
|
|
|
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
|
2016-02-29 15:34:20 +00:00
|
|
|
- update NFS mount statistic patch
|
2006-11-21 15:34:11 +00:00
|
|
|
|
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
|
|
|
|