19910c
Summary: Collection of performance monitoring tools for Linux
19910c
Name: sysstat
19910c
Version: 11.7.3
84e34f
Release: 9%{?dist}
19910c
License: GPLv2+
19910c
Group: Applications/System
19910c
URL: http://sebastien.godard.pagesperso-orange.fr/
19910c
Source: http://pagesperso-orange.fr/sebastien.godard/%{name}-%{version}.tar.xz
19910c
19910c
# Use colors in sysstat output
19910c
Source10: colorsysstat.csh
19910c
Source11: colorsysstat.sh
19910c
8c8ee3
# Downstream patches
8c8ee3
Patch01: CVE-2019-16167_memory-corruption-due-to-an-integer-overflow.patch
15aad6
Patch02: 0001-ignoring-autofs-as-real-filesystem-by-counting-numbe.patch
15aad6
Patch03: 0001-sar-Add-missing-gnice-CPU-value-for-tickless-CPU.patch
83c8ee
Patch04: 0001-sadf-Fix-seg-fault-on-empty-data-files.patch
83c8ee
Patch05: 0001-sar-Fix-typo-in-manual-page.patch
84e34f
Patch06: CVE-2022-39377-arithmetic-overflow-in-allocate-structures-on-32-bit-systems.patch
84e34f
Patch07: 0001-sadc-Add-a-f-flag-to-force-fdatasync-use.patch
8c8ee3
19910c
BuildRequires: gettext, lm_sensors-devel, systemd
19910c
19910c
Requires: findutils, xz
19910c
Requires(post): systemd
19910c
Requires(preun): systemd
19910c
Requires(postun): systemd
19910c
19910c
%description
19910c
The sysstat package contains the sar, sadf, mpstat, iostat, tapestat,
19910c
pidstat, cifsiostat and sa tools for Linux.
19910c
The sar command collects and reports system activity information.
19910c
The information collected by sar can be saved in a file in a binary
19910c
format for future inspection. The statistics reported by sar concern
19910c
I/O transfer rates, paging activity, process-related activities,
19910c
interrupts, network activity, memory and swap space utilization, CPU
19910c
utilization, kernel activities and TTY statistics, among others. Both
19910c
UP and SMP machines are fully supported.
19910c
The sadf command may  be used to display data collected by sar in
19910c
various formats (CSV, XML, etc.).
19910c
The iostat command reports CPU utilization and I/O statistics for disks.
19910c
The tapestat command reports statistics for tapes connected to the system.
19910c
The mpstat command reports global and per-processor statistics.
19910c
The pidstat command reports statistics for Linux tasks (processes).
19910c
The cifsiostat command reports I/O statistics for CIFS file systems.
19910c
19910c
%prep
19910c
%setup -q
8c8ee3
%patch01 -p0
15aad6
%patch02 -p1
15aad6
%patch03 -p1
83c8ee
%patch04 -p1
83c8ee
%patch05 -p1
13ba7c
%patch06 -p1
84e34f
%patch07 -p1
19910c
19910c
%build
19910c
export CFLAGS="$RPM_OPT_FLAGS -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld"
19910c
%configure \
19910c
    --enable-install-cron \
19910c
    --enable-copy-only \
19910c
    --disable-file-attr \
19910c
    --disable-stripping \
19910c
    --docdir=%{_pkgdocdir} \
19910c
    sadc_options='-S DISK' \
19910c
    history=28 \
19910c
    compressafter=31
19910c
make %{?_smp_mflags}
19910c
19910c
%install
19910c
%make_install
19910c
%find_lang %{name}
19910c
19910c
# Colored sysstat output
19910c
mkdir -p %{buildroot}%{_sysconfdir}/profile.d
19910c
install -p -m 644 %{SOURCE10} %{buildroot}%{_sysconfdir}/profile.d
19910c
install -p -m 644 %{SOURCE11} %{buildroot}%{_sysconfdir}/profile.d
19910c
19910c
%post
19910c
%systemd_post sysstat.service sysstat-collect.timer sysstat-summary.timer
19910c
19910c
%preun
19910c
%systemd_preun sysstat.service sysstat-collect.timer sysstat-summary.timer
19910c
if [[ $1 -eq 0 ]]; then
19910c
    # Remove sa logs if removing sysstat completely
19910c
    rm -rf %{_localstatedir}/log/sa/*
19910c
fi
19910c
19910c
%postun
19910c
%systemd_postun sysstat.service sysstat-collect.timer sysstat-summary.timer
19910c
19910c
%files -f %{name}.lang
19910c
%doc CHANGES COPYING CREDITS FAQ.md README.md %{name}-%{version}.lsm
19910c
%config(noreplace) %{_sysconfdir}/sysconfig/sysstat
19910c
%config(noreplace) %{_sysconfdir}/sysconfig/sysstat.ioconf
19910c
%config(noreplace) %{_sysconfdir}/profile.d/*
19910c
%{_bindir}/*
19910c
%{_libdir}/sa
19910c
%{_unitdir}/sysstat*
19910c
%{_mandir}/man*/*
19910c
%{_localstatedir}/log/sa
19910c
19910c
%changelog
84e34f
* Wed Dec 14 2022 Lukáš Zaoral <lzaoral@redhat.com> - 11.7.3-9
84e34f
- add -f flag to force fdatasync() after sa file update (#2153192)
84e34f
84e34f
* Thu Nov 10 2022 Lukáš Zaoral <lzaoral@redhat.com> - 11.7.3-8
84e34f
- arithmetic overflow in allocate_structures() on 32 bit systems (CVE-2022-39377)
13ba7c
83c8ee
* Mon Nov 29 2021  <msekleta@redhat.com> - 11.7.3-7
83c8ee
- Don't trigger autofs mounts when running sadc (#2000910)
83c8ee
- sar: Add missing %gnice CPU value for tickless CPU (#2000916)
83c8ee
- sadf: Fix seg fault on empty data files (#1910841)
83c8ee
- sar: Fix typo in manual page (#1877836)
15aad6
8c8ee3
* Fri Jul 10 2020 Jan Macku <jamacku@redhat.com> - 11.7.3-5
8c8ee3
- Rebuild
8c8ee3
8c8ee3
* Fri Apr 17 2020 Jan Macku <jamacku@redhat.com> - 11.7.3-4
8c8ee3
- Package onboarded to gating
8c8ee3
8c8ee3
* Thu Feb 20 2020 Jan Macku <jamacku@redhat.com> - 11.7.3-3
8c8ee3
- Fix memory corruption bug due to integer overflow (#1790608)
8c8ee3
19910c
* Thu Oct 25 2018 Michal Sekletár <msekleta@redhat.com> - 11.7.3-2
19910c
- sysstat's buildsystem doesn't really use LDFLAGS, we have to merge CFLAGS and LDFLAGS to get binaries with full RELRO (#1624177)
19910c
19910c
* Thu Apr 19 2018 Michal Sekletar <msekleta@redhat.com> - 11.7.3-1
19910c
- rebase to 11.7.3 (#1508436)
19910c
19910c
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 11.6.2-2
19910c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
19910c
19910c
* Mon Jan 22 2018 Peter Schiffer <pschiffe@redhat.com> - 11.6.2-1
19910c
- related: #1508436
19910c
  updated to 11.6.2
19910c
19910c
* Fri Nov 24 2017 Peter Schiffer <pschiffe@redhat.com> - 11.6.1-1
19910c
- related: #1508436, #1439237
19910c
  updated to 11.6.1
19910c
19910c
* Wed Sep 13 2017 Peter Schiffer <pschiffe@redhat.com> - 11.6.0-1
19910c
- resolves: #1481488
19910c
  updated to 11.6.0
19910c
19910c
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 11.5.7-4
19910c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
19910c
19910c
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 11.5.7-3
19910c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
19910c
19910c
* Fri Jul 14 2017 Peter Schiffer <pschiffe@redhat.com> - 11.5.7-2
19910c
- related: #1467891
19910c
  rebuild
19910c
19910c
* Thu Jul 13 2017 Peter Schiffer <pschiffe@redhat.com> - 11.5.7-1
19910c
- resolves: #1467891
19910c
  updated to 11.5.7
19910c
19910c
* Wed May 17 2017 Peter Schiffer <pschiffe@redhat.com> - 11.5.6-1
19910c
- resolves: #1450710
19910c
  updated to 11.5.6
19910c
19910c
* Tue Mar 28 2017 Peter Schiffer <pschiffe@redhat.com> - 11.5.5-1
19910c
- resolves: #1427351
19910c
  updated to 11.5.5
19910c
19910c
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 11.5.4-2
19910c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
19910c
19910c
* Mon Jan 30 2017 Peter Schiffer <pschiffe@redhat.com> - 11.5.4-1
19910c
- resolves: #1413365
19910c
  updated to 11.5.4
19910c
19910c
* Tue Jan  3 2017 Peter Schiffer <pschiffe@redhat.com> - 11.5.3-1
19910c
- resolves: #1402178
19910c
  updated to 11.5.3
19910c
19910c
* Mon Nov 28 2016 Peter Schiffer <pschiffe@redhat.com> - 11.5.2-1
19910c
- resolves: #1392729
19910c
  updated to 11.5.2
19910c
19910c
* Tue Sep 27 2016 Peter Schiffer <pschiffe@redhat.com> - 11.5.1-1
19910c
- updated to 11.5.1
19910c
19910c
* Thu Sep  1 2016 Peter Schiffer <pschiffe@redhat.com> - 11.4.0-1
19910c
- resolves: #1370820
19910c
  updated to 11.4.0
19910c
19910c
* Thu Jun 30 2016 Peter Schiffer <pschiffe@redhat.com> - 11.3.5-1
19910c
- updated to 11.3.5
19910c
19910c
* Tue May 24 2016 Peter Schiffer <pschiffe@redhat.com> - 11.3.4-1
19910c
- resolves: #1336188
19910c
  updated to 11.3.4
19910c
19910c
* Sat Apr 30 2016 Peter Schiffer <pschiffe@redhat.com> - 11.3.3-1
19910c
- updated to 11.3.3
19910c
19910c
* Thu Mar 31 2016 Peter Schiffer <pschiffe@redhat.com> - 11.3.2-1
19910c
- resolves: #1317717
19910c
  updated to 11.3.2
19910c
19910c
* Mon Feb 29 2016 Peter Schiffer <pschiffe@redhat.com> - 11.3.1-1
19910c
- resolves: #1310920
19910c
  updated to 11.3.1
19910c
19910c
* Fri Feb 05 2016 Fedora Release Engineering <releng@fedoraproject.org> - 11.2.0-2
19910c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
19910c
19910c
* Wed Jan 20 2016 Peter Schiffer <pschiffe@redhat.com> - 11.2.0-1
19910c
- resolves: #1296762
19910c
  updated to 11.2.0
19910c
19910c
* Mon Nov  2 2015 Peter Schiffer <pschiffe@redhat.com> - 11.1.8-1
19910c
- resolves: #1274940
19910c
  updated to 11.1.8
19910c
19910c
* Fri Oct  2 2015 Peter Schiffer <pschiffe@redhat.com> - 11.1.7-1
19910c
- resolves: #1264895
19910c
  updated to 11.1.7
19910c
- added colors to sysstat output
19910c
19910c
* Mon Aug 31 2015 Peter Schiffer <pschiffe@redhat.com> - 11.1.6-1
19910c
- resolves: #1256784
19910c
  updated to 11.1.6
19910c
19910c
* Mon Jun 29 2015 Peter Schiffer <pschiffe@redhat.com> - 11.1.5-1
19910c
- resolves: #1231242
19910c
  updated to 11.1.5
19910c
19910c
* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 11.1.4-2
19910c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
19910c
19910c
* Fri Apr 10 2015 Peter Schiffer <pschiffe@redhat.com> - 11.1.4-1
19910c
- resolves: #1210532
19910c
  updated to 11.1.4
19910c
19910c
* Mon Mar 02 2015 Peter Schiffer <pschiffe@redhat.com> - 11.1.3-1
19910c
- resolves: #1193434
19910c
  updated to 11.1.3
19910c
19910c
* Thu Jan 22 2015 Dan Horák <dan[at]danny.cz> - 11.1.2-3
19910c
- fix 64-bit builds on non-x86 arches
19910c
19910c
* Thu Jan 15 2015 Peter Schiffer <pschiffe@redhat.com> - 11.1.2-2
19910c
- cleaned .spec file
19910c
19910c
* Mon Oct 20 2014 Peter Schiffer <pschiffe@redhat.com> - 11.1.2-1
19910c
- resolves: #1154601
19910c
  updated to 11.1.2
19910c
19910c
* Thu Sep  4 2014 Peter Schiffer <pschiffe@redhat.com> - 11.1.1-1
19910c
- resolves: #1138294
19910c
  updated to 11.1.1
19910c
19910c
* Thu Aug 21 2014 Kevin Fenzi <kevin@scrye.com> - 11.0.0-3
19910c
- Rebuild for rpm bug 1131960
19910c
19910c
* Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 11.0.0-2
19910c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
19910c
19910c
* Wed Jun 18 2014 Peter Schiffer <pschiffe@redhat.com> - 11.0.0-1
19910c
- updated to 11.0.0
19910c
19910c
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 10.3.1-2
19910c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
19910c
19910c
* Tue May 27 2014 Peter Schiffer <pschiffe@redhat.com> - 10.3.1-1
19910c
- resolves: #1077640
19910c
  updated to 10.3.1
19910c
  migrated to systemd timer units
19910c
19910c
* Mon Jan 27 2014 Peter Schiffer <pschiffe@redhat.com> - 10.2.1-1
19910c
- resolves: #1057547
19910c
  updated to 10.2.1
19910c
19910c
* Mon Nov 11 2013 Peter Schiffer <pschiffe@redhat.com> - 10.2.0-1
19910c
- resolves: #1026244
19910c
  updated to 10.2.0
19910c
19910c
* Fri Oct 25 2013 Peter Schiffer <pschiffe@redhat.com> - 10.1.7-1
19910c
- resolves: #1007794
19910c
  updated to 10.1.7
19910c
19910c
* Wed Aug 14 2013 Peter Schiffer <pschiffe@redhat.com> - 10.1.6-1
19910c
- resolves: #972508
19910c
  updated to 10.1.6
19910c
- resolves: #993394
19910c
  fixed FTBFS (added BR on systemd)
19910c
- install the docs in the new pkgdocdir
19910c
  (thanks to Mathieu Bridon <bochecha@fedoraproject.org> for the patch)
19910c
19910c
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 10.1.5-2
19910c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
19910c
19910c
* Fri Apr  5 2013 Peter Schiffer <pschiffe@redhat.com> - 10.1.5-1
19910c
- resolves: #919581
19910c
  updated to 10.1.5
19910c
- collect disk statistics by default
19910c
19910c
* Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 10.1.3-2
19910c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
19910c
19910c
* Wed Jan  2 2013 Peter Schiffer <pschiffe@redhat.com> - 10.1.3-1
19910c
- resolves: #890425
19910c
  updated to 10.1.3
19910c
19910c
* Mon Dec  3 2012 Peter Schiffer <pschiffe@redhat.com> - 10.1.2-2
19910c
- added new -y option to iostat command to skip first since boot report if
19910c
  displaying multiple reports
19910c
19910c
* Tue Nov 13 2012 Peter Schiffer <pschiffe@redhat.com> - 10.1.2-1
19910c
- resolves: #863791
19910c
  updated to 10.1.2
19910c
- resolves: #850333
19910c
  migrated to the new systemd-rpm macros
19910c
- cleaned .spec file
19910c
19910c
* Wed Aug 01 2012 Peter Schiffer <pschiffe@redhat.com> - 10.1.1-1
19910c
- resolves: #844387
19910c
  update to 10.1.1
19910c
- keep log files for 28 days instead of 7
19910c
- collect all aditional statistics
19910c
19910c
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 10.0.5-2
19910c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
19910c
19910c
* Tue Jun 19 2012 Peter Schiffer <pschiffe@redhat.com> - 10.0.5-1
19910c
- resolves: #822867
19910c
  update to 10.0.5
19910c
19910c
* Wed May 16 2012 Peter Schiffer <pschiffe@redhat.com> - 10.0.4-1
19910c
- resolves: #803032
19910c
  update to 10.0.4
19910c
- resolves: #820725
19910c
  enable sysstat service by default
19910c
19910c
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 10.0.3-2
19910c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
19910c
19910c
* Wed Nov 30 2011 Peter Schiffer <pschiffe@redhat.com> - 10.0.3-1
19910c
- resolves: #757687
19910c
  update to 10.0.3
19910c
19910c
* Tue Sep 13 2011 Tom Callaway <spot@fedoraproject.org> - 10.0.2-2
19910c
- fix libdir pathing in systemd service file
19910c
19910c
* Mon Sep 12 2011 Tom Callaway <spot@fedoraproject.org> - 10.0.2-1
19910c
- update to 10.0.2
19910c
- convert to systemd
19910c
19910c
* Tue Jun  7 2011 Ivana Hutarova Varekova <varekova@redhat.com> - 10.0.1-1
19910c
- update to 10.0.1
19910c
- remove useles patches
19910c
19910c
* Wed May  4 2011 Ivana Hutarova Varekova <varekova@redhat.com> - 10.0.0-4
19910c
- close the file descriptor in a special situation in read_uoptime function
19910c
- fix the number on open files in cifsiostat output
19910c
19910c
* Mon May  2 2011 Ivana Hutarova Varekova <varekova@redhat.com> - 10.0.0-3
19910c
- add -h optioon to iostat tool
19910c
  (-h   Make the disk stats report easier to read by a human.)
19910c
19910c
* Mon Apr  4 2011 Ivana Hutarova Varekova <varekova@redhat.com> - 10.0.0-2
19910c
- remove unnecessary patch
19910c
19910c
* Mon Apr  4 2011 Ivana Hutarova Varekova <varekova@redhat.com> - 10.0.0-1
19910c
- update to 10.0.0
19910c
  remove obsolete patches
19910c
  remove autoreconfiguration
19910c
19910c
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 9.0.6.1-14
19910c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
19910c
19910c
* Mon Nov 22 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 9.0.6.1-13
19910c
- Resolves: #642280
19910c
  sar -u overflow problem - thanks Michal Srb
19910c
19910c
* Thu Oct  7 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 9.0.6.1-12
19910c
- improve sar thickless kernel support
19910c
  (fix the output per separate cpu "-P ALL" option )
19910c
19910c
* Mon Oct  4 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 9.0.6.1-11
19910c
- resolves: #635646
19910c
  test the output of localtime properly
19910c
19910c
* Wed Sep 29 2010 jkeating - 9.0.6.1-10
19910c
- Rebuilt for gcc bug 634757
19910c
19910c
* Thu Sep 23 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 9.0.6.1-9
19910c
- add the mandir patch
19910c
- add the possibility to sed sadc cron options
19910c
19910c
* Tue Sep 21 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 9.0.6.1-8
19910c
- add necessary dependency (autoconf), necessary because of patch7
19910c
19910c
* Tue Sep 21 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 9.0.6.1-7
19910c
- remove needless DOCDIR setting
19910c
- remove needless INIT_DIR setting
19910c
- fix the problem with --disable-man-group option
19910c
19910c
* Wed Sep  8 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 9.0.6.1-6
19910c
- fix the sar output on tickless kernel
19910c
19910c
* Fri Aug 13 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 9.0.6.1-5
19910c
- remove bogus links description
19910c
19910c
* Mon Jul 19 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 9.0.6.1-4
19910c
- fix sar problem - sysstat can not monitor system status every second
19910c
19910c
* Mon Apr 19 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 9.0.6.1-3
19910c
- fix mpstat tool (when the cpu is switched off)
19910c
19910c
* Fri Apr 16 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 9.0.6.1-2
19910c
- fix the mpstat output on tickless kernel
19910c
19910c
* Tue Mar  2 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 9.0.6.1-1
19910c
- update to 9.0.6.1
19910c
19910c
* Tue Feb 16 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 9.0.6-3
19910c
- fix init script format
19910c
19910c
* Fri Dec 11 2009 Ivana Hutarova Varekova <varekova@redhat.com> - 9.0.6-2
19910c
- fix the problem in get_nfs_mount_nr function
19910c
  ( iostat -n causes stack smashing)
19910c
19910c
* Wed Dec  2 2009 Ivana Hutarva Varekova <varekova@redhat.com> - 9.0.6-1
19910c
- update to 9.0.6
19910c
19910c
* Tue Sep 15 2009 Ivana Varekova <varekova@redhat.com> - 9.0.4-4
19910c
- fix init script
19910c
19910c
* Mon Sep 14 2009 Ivana Varekova <varekova@redhat.com> - 9.0.4-3
19910c
- fix init script - add INIT INFO flags (#522740)
19910c
  and add condrestart, try-restart and force-reload (#522743)
19910c
19910c
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 9.0.4-2
19910c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
19910c
19910c
* Mon Jul 20 2009 Ivana Varekova <varekova@redhat.com> - 9.0.4-1
19910c
- update to 9.0.4
19910c
19910c
* Thu May 28 2009 Ivana Varekova <varekova@redhat.com> - 9.0.3-1
19910c
- update to 9.0.3
19910c
- remove obsolete patches
19910c
19910c
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 8.0.4-7
19910c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
19910c
19910c
* Fri Dec  5 2008 Ivana Varekova <varekova@redhat.com> - 8.0.4-6
19910c
- add /proc/diskstats reading patch
19910c
19910c
* Mon Sep 22 2008 Ivana Varekova <varekova@redhat.com> - 8.0.4-5
19910c
- Resolves: #463066 - Fix Patch0:/%%patch mismatch
19910c
19910c
* Wed Apr 23 2008 Ivana Varekova <varekova@redhat.com> - 8.0.4-4
19910c
- Resolves: #442801 mpstat shows one extra cpu
19910c
  thanks Chris Wright
19910c
19910c
* Thu Mar  6 2008 Ivana Varekova <varekova@redhat.com> - 8.0.4-3
19910c
- add nfs extended statistic to iostat command
19910c
19910c
* Thu Feb 28 2008 Ivana Varekova <varekova@redhat.com> - 8.0.4-2
19910c
- retry write functuon in sadc command - thanks Tomas Mraz
19910c
19910c
* Fri Feb  8 2008 Ivana Varekova <varekova@redhat.com> - 8.0.4-1
19910c
- updated to 8.0.4
19910c
19910c
* Mon Dec  3 2007 Ivana Varekova <varekova@redhat.com> - 8.0.3-1
19910c
- updated to 8.0.3
19910c
19910c
* Fri Nov  9 2007 Ivana Varekova <varekova@redhat.com> - 8.0.2-3
19910c
- used macros instead of var, etc
19910c
19910c
* Thu Nov  8 2007 Ivana Varekova <varekova@redhat.com> - 8.0.2-2
19910c
- change license tag
19910c
- remove sysstat.crond source (add -d)
19910c
- remove obsolete sysconfig file
19910c
- spec file cleanup
19910c
19910c
* Mon Nov  5 2007 Ivana Varekova <varekova@redhat.com> - 8.0.2-1
19910c
- update 8.0.2
19910c
- spec file cleanup
19910c
19910c
* Wed Oct 24 2007 Ivana Varekova <varekova@redhat.com> - 8.0.1-2
19910c
- remove useless patches
19910c
19910c
* Mon Oct 22 2007 Ivana Varekova <varekova@redhat.com> - 8.0.1-1
19910c
- update to 8.0.1
19910c
- remove useless patches
19910c
- spec file cleanup
19910c
- remove smp build flag (ar problem)
19910c
- add libdir flags
19910c
19910c
* Wed Aug 15 2007 Ivana Varekova <varekova@redhat.com> - 7.0.4-3
19910c
- fix cve-2007-3852 -
19910c
  sysstat insecure temporary file usage
19910c
19910c
* Fri Mar 23 2007 Ivana Varekova <varekova@redhat.com> - 7.0.4-2
19910c
- fix sa2 problem (sa2 works wrong when the /var/log/sa file is
19910c
  a link to another directory)
19910c
19910c
* Mon Feb 12 2007 Ivana Varekova <varekova@redhat.com> - 7.0.4-1
19910c
- update to 7.0.4
19910c
- spec file cleanup
19910c
19910c
* Tue Jan 30 2007 Ivana Varekova <varekova@redhat.com> - 7.0.3-3
19910c
- remove -s flag
19910c
19910c
* Mon Dec 18 2006 Ivana Varekova <varekova@redhat.com> - 7.0.3-1
19910c
- update to 7.0.3
19910c
19910c
* Tue Nov 21 2006 Ivana Varekova <varekova@redhat.com> - 7.0.2-3
19910c
- update NFS mount statistic patch
19910c
19910c
* Wed Nov  8 2006 Ivana Varekova <varekova@redhat.com> - 7.0.2-1
19910c
- update to 7.0.2
19910c
19910c
* Thu Oct 26 2006 Ivana Varekova <varekova@redhat.com> - 7.0.0-3
19910c
- move tmp file (#208433)
19910c
19910c
* Mon Oct  9 2006 Ivana Varekova <varekova@redhat.com> - 7.0.0-2
19910c
- add NFS mount statistic (#184321)
19910c
19910c
* Fri Jul 14 2006 Marcela Maslanova <mmaslano@redhat.com> - 7.0.0-1
19910c
- new version 7.0.0
19910c
19910c
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 6.0.2-2.1
19910c
- rebuild
19910c
19910c
* Mon Jun  5 2006 Jesse Keating <jkeating@redhat.com> 6.0.2-2
19910c
- Add missing BR of gettext
19910c
19910c
* Fri May  5 2006 Ivana Varekova <varekova@redhat.com> 6.0.2-1
19910c
- update to 6.0.2
19910c
- remove asm/page.h used sysconf command to get PAGE_SIZE
19910c
19910c
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 6.0.1-3.2.1
19910c
- bump again for double-long bug on ppc(64)
19910c
19910c
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 6.0.1-3.2
19910c
- rebuilt for new gcc4.1 snapshot and glibc changes
19910c
19910c
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
19910c
- rebuilt
19910c
19910c
* Tue Oct 11 2005 Ivana Varekova <varekova@redhat.com> 6.0.1-3
19910c
- add FAQ to documentation (bug 170158)
19910c
19910c
* Mon Oct 10 2005 Ivana Varekova <varekova@redhat.com> 6.0.1-2
19910c
- fix chkconfig problem
19910c
19910c
* Fri Oct  7 2005 Ivana Varekova <varekova@redhat.com> 6.0.1-1
19910c
- version 6.0.1
19910c
19910c
* Thu Aug 18 2005 Florian La Roche <laroche@redhat.com>
19910c
- no need to kernel kernel 2.2 or newer anymore
19910c
19910c
* Tue May 10 2005 Ivana Varekova <varekova@redhat.com> 5.0.5-10.fc
19910c
- add debug files to debug_package
19910c
19910c
* Mon Mar  7 2005 Ivana Varekova <varekova@redhat.com> 5.0.5-9.fc
19910c
- rebuilt (add gcc4fix, update lib64ini)
19910c
19910c
* Fri Mar  4 2005 Ivana Varekova <varekova@redhat.ccm> 5.0.5-7.fc
19910c
- rebuilt
19910c