auto-import changelog data from sysstat-3.3.5-3.src.rpm
Sun Apr 08 2001 Preston Brown <pbrown@redhat.com> - explicitly set safe umask (#35142) Fri Mar 09 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
This commit is contained in:
parent
28d7962e5d
commit
7f2e01764a
@ -1 +1 @@
|
|||||||
sysstat-3.3.3.tar.gz
|
sysstat-3.3.5.tar.gz
|
||||||
|
2
sources
2
sources
@ -1 +1 @@
|
|||||||
f6269656b3603b90257f786679a7aabe sysstat-3.3.3.tar.gz
|
92858cb3301a01538508a2eeff020286 sysstat-3.3.5.tar.gz
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
# generate a daily summary of process accounting.
|
# generate a daily summary of process accounting.
|
||||||
|
umask 0022
|
||||||
/usr/lib/sa/sa2 -A &
|
/usr/lib/sa/sa2 -A &
|
||||||
|
31
sysstat.spec
31
sysstat.spec
@ -1,14 +1,15 @@
|
|||||||
Name: sysstat
|
Name: sysstat
|
||||||
Version: 3.3.3
|
Version: 3.3.5
|
||||||
Release: 3
|
Release: 3
|
||||||
Summary: Includes the sar and iostat system monitoring commands.
|
Summary: Includes the sar and iostat system monitoring commands.
|
||||||
License: GPL
|
License: GPL
|
||||||
Group: Applications/System
|
Group: Applications/System
|
||||||
Source: http://metalab.unc.edu/pub/Linux/system/status/%{name}-%{version}.tar.gz
|
Source: http://ibiblio.org/pub/Linux/system/status/%{name}-%{version}.tar.gz
|
||||||
Source1: sysstat.cronhourly
|
Source1: sysstat.cronhourly
|
||||||
Source2: sysstat.crondaily
|
Source2: sysstat.crondaily
|
||||||
Patch0: sysstat-3.3.3-config.patch
|
Patch0: sysstat-3.3.3-config.patch
|
||||||
Patch1: sysstat-3.3.3-fixman.patch
|
Patch1: sysstat-3.3.3-prevday.patch
|
||||||
|
Patch2: sysstat-3.3.5-fixutilization.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}
|
BuildRoot: %{_tmppath}/%{name}-%{version}
|
||||||
Requires: kernel >= 2.2.16-21
|
Requires: kernel >= 2.2.16-21
|
||||||
Prereq: sh-utils textutils grep fileutils
|
Prereq: sh-utils textutils grep fileutils
|
||||||
@ -21,10 +22,10 @@ They enable system monitoring of disk, network, and other IO activity.
|
|||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
%patch0 -p1 -b .config
|
%patch0 -p1 -b .config
|
||||||
%patch1 -p1 -b .fixman
|
%patch1 -p1 -b .prevday
|
||||||
|
%patch2 -p1 -b .fixutilization
|
||||||
|
|
||||||
%build
|
%build
|
||||||
rm -rf $RPM_BUILD_ROOT
|
|
||||||
make CFLAGS="$RPM_OPT_FLAGS" PREFIX=%{_prefix}
|
make CFLAGS="$RPM_OPT_FLAGS" PREFIX=%{_prefix}
|
||||||
|
|
||||||
%install
|
%install
|
||||||
@ -35,6 +36,8 @@ mkdir -p %{buildroot}/etc/{cron.daily,cron.hourly}
|
|||||||
install %{SOURCE1} %{buildroot}/etc/cron.hourly/sysstat
|
install %{SOURCE1} %{buildroot}/etc/cron.hourly/sysstat
|
||||||
install %{SOURCE2} %{buildroot}/etc/cron.daily/sysstat
|
install %{SOURCE2} %{buildroot}/etc/cron.daily/sysstat
|
||||||
|
|
||||||
|
%find_lang %{name}
|
||||||
|
|
||||||
%triggerpostun -- sysstat <= 3.3.3-1
|
%triggerpostun -- sysstat <= 3.3.3-1
|
||||||
# earlier versions of sysstat had crontabs done in a bad way. fix it.
|
# earlier versions of sysstat had crontabs done in a bad way. fix it.
|
||||||
if [ `id -u` = "0" -a "$1" -ge "2" ]; then
|
if [ `id -u` = "0" -a "$1" -ge "2" ]; then
|
||||||
@ -51,9 +54,9 @@ fi
|
|||||||
%clean
|
%clean
|
||||||
rm -rf %{buildroot}
|
rm -rf %{buildroot}
|
||||||
|
|
||||||
%files
|
%files -f %{name}.lang
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%doc CHANGES COPYING CREDITS README
|
%doc CHANGES COPYING CREDITS README TODO
|
||||||
/etc/cron.hourly/sysstat
|
/etc/cron.hourly/sysstat
|
||||||
/etc/cron.daily/sysstat
|
/etc/cron.daily/sysstat
|
||||||
%{_bindir}/*
|
%{_bindir}/*
|
||||||
@ -61,9 +64,21 @@ rm -rf %{buildroot}
|
|||||||
%{_mandir}/man1/*
|
%{_mandir}/man1/*
|
||||||
%{_mandir}/man8/*
|
%{_mandir}/man8/*
|
||||||
/var/log/sa
|
/var/log/sa
|
||||||
%{_datadir}/locale/*/LC_MESSAGES/*
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* 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
|
||||||
|
|
||||||
* Tue Jan 17 2001 Preston Brown <pbrown@redhat.com>
|
* Tue Jan 17 2001 Preston Brown <pbrown@redhat.com>
|
||||||
- iostat man page fixes
|
- iostat man page fixes
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user