source: projects/specs/trunk/s/sysstat/sysstat-vl.spec @ 7761

Revision 7761, 18.3 KB checked in by shaolin, 11 years ago (diff)
  • sysstat: new package
Line 
1Summary:        Collection of performance monitoring tools for Linux
2Summary(ja):    Linux —pƒpƒtƒH[ƒ}ƒ“ƒXŒv‘ªƒc[ƒ‹W
3Name:           sysstat
4Version:        10.1.6
5Release:        1%{?_dist_release}
6License:        GPLv2+
7Group:          Applications/System
8URL:            http://sebastien.godard.pagesperso-orange.fr/
9Source:         http://pagesperso-orange.fr/sebastien.godard/%{name}-%{version}.tar.bz2
10
11Requires:       vixie-cron, fileutils, grep, sh-utils, textutils
12Requires(post):   /sbin/chkconfig
13Requires(preun):  /sbin/chkconfig
14Requires(postun): /sbin/chkconfig
15
16BuildRequires: kernel-headers, gettext, lm-sensors-devel, perl
17
18Vendor: Project Vine
19Distribution: Vine Linux
20Packager: shaolin
21
22
23%description
24The sysstat package contains sar, sadf, mpstat, iostat, pidstat, nfsiostat,
25cifsiostat and sa tools for Linux.
26The sar command collects and reports system activity information. This
27information can be saved in a file in a binary format for future inspection. The
28statistics reported by sar concern I/O transfer rates, paging activity,
29process-related activities, interrupts, network activity, memory and swap space
30utilization, CPU utilization, kernel activities and TTY statistics, among
31others. Both UP and SMP machines are fully supported.
32The sadf command may be used to display data collected by sar in various formats
33(CSV, XML, etc.).
34The iostat command reports CPU utilization and I/O statistics for disks.
35The mpstat command reports global and per-processor statistics.
36The pidstat command reports statistics for Linux tasks (processes).
37The nfsiostat command reports I/O statistics for network file systems.
38The cifsiostat command reports I/O statistics for CIFS file systems.
39
40
41%prep
42%setup -q
43iconv -f windows-1252 -t utf8 CREDITS > CREDITS.aux
44mv CREDITS.aux CREDITS
45
46
47%build
48%configure sa_lib_dir=%{_libdir}/sa history=28 compressafter=31 \
49    --disable-man-group --disable-stripping
50%{__sed} -i 's/SADC_OPTIONS=""/SADC_OPTIONS="-S DISK"/' sysstat.sysconfig
51export CFLAGS="$RPM_OPT_FLAGS -DSADC_PATH=\\\"%{_libdir}/sa/sadc\\\""
52#make %{?_smp_mflags}   # doesn't work in 10.1.6
53make
54
55
56%install
57make install DESTDIR=%{buildroot}
58
59# Install cron file
60mkdir -p %{buildroot}%{_sysconfdir}/cron.d
61install -m 0644 cron/sysstat.crond %{buildroot}%{_sysconfdir}/cron.d/sysstat
62
63# Install service file
64mkdir -p %{buildroot}%{_initdir}
65install -m 0755 sysstat %{buildroot}%{_initdir}/
66
67%find_lang %{name}
68
69
70%post
71/sbin/chkconfig --add sysstat
72
73
74%preun
75if [[ $1 -eq 0 ]]; then
76  # Remove sa logs if removing sysstat completely
77  rm -f %{_localstatedir}/log/sa/*
78  # Remove service
79  /sbin/chkconfig --del sysstat
80fi
81
82
83%files -f %{name}.lang
84%defattr(-,root,root,-)
85%doc CHANGES COPYING CREDITS README FAQ
86%config(noreplace) %{_sysconfdir}/cron.d/sysstat
87%config(noreplace) %{_sysconfdir}/sysconfig/sysstat
88%config(noreplace) %{_sysconfdir}/sysconfig/sysstat.ioconf
89%{_initdir}/sysstat
90%{_bindir}/*
91%{_libdir}/sa
92%{_mandir}/man1/*
93%{_mandir}/man5/*
94%{_mandir}/man8/*
95%{_localstatedir}/log/sa
96
97
98%changelog
99* Mon Aug 19 2013 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 10.1.6-1
100- initial build for Vine Linux
101
102* Wed Aug 14 2013 Peter Schiffer <pschiffe@redhat.com> - 10.1.6-1
103- resolves: #972508
104  updated to 10.1.6
105- resolves: #993394
106  fixed FTBFS (added BR on systemd)
107- install the docs in the new pkgdocdir
108  (thanks to Mathieu Bridon <bochecha@fedoraproject.org> for the patch)
109
110* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 10.1.5-2
111- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
112
113* Fri Apr  5 2013 Peter Schiffer <pschiffe@redhat.com> - 10.1.5-1
114- resolves: #919581
115  updated to 10.1.5
116- collect disk statistics by default
117
118* Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 10.1.3-2
119- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
120
121* Wed Jan  2 2013 Peter Schiffer <pschiffe@redhat.com> - 10.1.3-1
122- resolves: #890425
123  updated to 10.1.3
124
125* Mon Dec  3 2012 Peter Schiffer <pschiffe@redhat.com> - 10.1.2-2
126- added new -y option to iostat command to skip first since boot report if
127  displaying multiple reports
128
129* Tue Nov 13 2012 Peter Schiffer <pschiffe@redhat.com> - 10.1.2-1
130- resolves: #863791
131  updated to 10.1.2
132- resolves: #850333
133  migrated to the new systemd-rpm macros
134- cleaned .spec file
135
136* Wed Aug 01 2012 Peter Schiffer <pschiffe@redhat.com> - 10.1.1-1
137- resolves: #844387
138  update to 10.1.1
139- keep log files for 28 days instead of 7
140- collect all aditional statistics
141
142* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 10.0.5-2
143- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
144
145* Tue Jun 19 2012 Peter Schiffer <pschiffe@redhat.com> - 10.0.5-1
146- resolves: #822867
147  update to 10.0.5
148
149* Wed May 16 2012 Peter Schiffer <pschiffe@redhat.com> - 10.0.4-1
150- resolves: #803032
151  update to 10.0.4
152- resolves: #820725
153  enable sysstat service by default
154
155* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 10.0.3-2
156- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
157
158* Wed Nov 30 2011 Peter Schiffer <pschiffe@redhat.com> - 10.0.3-1
159- resolves: #757687
160  update to 10.0.3
161
162* Tue Sep 13 2011 Tom Callaway <spot@fedoraproject.org> - 10.0.2-2
163- fix libdir pathing in systemd service file
164
165* Mon Sep 12 2011 Tom Callaway <spot@fedoraproject.org> - 10.0.2-1
166- update to 10.0.2
167- convert to systemd
168
169* Tue Jun  7 2011 Ivana Hutarova Varekova <varekova@redhat.com> - 10.0.1-1
170- update to 10.0.1
171- remove useles patches
172
173* Wed May  4 2011 Ivana Hutarova Varekova <varekova@redhat.com> - 10.0.0-4
174- close the file descriptor in a special situation in read_uoptime function
175- fix the number on open files in cifsiostat output
176
177* Mon May  2 2011 Ivana Hutarova Varekova <varekova@redhat.com> - 10.0.0-3
178- add -h optioon to iostat tool
179  (-h   Make the disk stats report easier to read by a human.)
180
181* Mon Apr  4 2011 Ivana Hutarova Varekova <varekova@redhat.com> - 10.0.0-2
182- remove unnecessary patch
183
184* Mon Apr  4 2011 Ivana Hutarova Varekova <varekova@redhat.com> - 10.0.0-1
185- update to 10.0.0
186  remove obsolete patches
187  remove autoreconfiguration
188
189* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 9.0.6.1-14
190- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
191
192* Mon Nov 22 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 9.0.6.1-13
193- Resolves: #642280
194  sar -u overflow problem - thanks Michal Srb
195
196* Thu Oct  7 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 9.0.6.1-12
197- improve sar thickless kernel support
198  (fix the output per separate cpu "-P ALL" option )
199
200* Mon Oct  4 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 9.0.6.1-11
201- resolves: #635646
202  test the output of localtime properly
203
204* Wed Sep 29 2010 jkeating - 9.0.6.1-10
205- Rebuilt for gcc bug 634757
206
207* Thu Sep 23 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 9.0.6.1-9
208- add the mandir patch
209- add the possibility to sed sadc cron options
210
211* Tue Sep 21 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 9.0.6.1-8
212- add necessary dependency (autoconf), necessary because of patch7
213
214* Tue Sep 21 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 9.0.6.1-7
215- remove needless DOCDIR setting
216- remove needless INIT_DIR setting
217- fix the problem with --disable-man-group option
218
219* Wed Sep  8 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 9.0.6.1-6
220- fix the sar output on tickless kernel
221
222* Fri Aug 13 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 9.0.6.1-5
223- remove bogus links description
224
225* Mon Jul 19 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 9.0.6.1-4
226- fix sar problem - sysstat can not monitor system status every second
227
228* Mon Apr 19 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 9.0.6.1-3
229- fix mpstat tool (when the cpu is switched off)
230
231* Fri Apr 16 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 9.0.6.1-2
232- fix the mpstat output on tickless kernel
233
234* Tue Mar  2 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 9.0.6.1-1
235- update to 9.0.6.1
236
237* Tue Feb 16 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 9.0.6-3
238- fix init script format
239
240* Fri Dec 11 2009 Ivana Hutarova Varekova <varekova@redhat.com> - 9.0.6-2
241- fix the problem in get_nfs_mount_nr function
242  ( iostat -n causes stack smashing)
243
244* Wed Dec  2 2009 Ivana Hutarva Varekova <varekova@redhat.com> - 9.0.6-1
245- update to 9.0.6
246
247* Tue Sep 15 2009 Ivana Varekova <varekova@redhat.com> - 9.0.4-4
248- fix init script
249
250* Mon Sep 14 2009 Ivana Varekova <varekova@redhat.com> - 9.0.4-3
251- fix init script - add INIT INFO flags (#522740)
252  and add condrestart, try-restart and force-reload (#522743)
253
254* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 9.0.4-2
255- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
256
257* Mon Jul 20 2009 Ivana Varekova <varekova@redhat.com> - 9.0.4-1
258- update to 9.0.4
259
260* Thu May 28 2009 Ivana Varekova <varekova@redhat.com> - 9.0.3-1
261- update to 9.0.3
262- remove obsolete patches
263
264* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 8.0.4-7
265- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
266
267* Fri Dec  5 2008 Ivana Varekova <varekova@redhat.com> - 8.0.4-6
268- add /proc/diskstats reading patch
269
270* Mon Sep 22 2008 Ivana Varekova <varekova@redhat.com> - 8.0.4-5
271- Resolves: #463066 - Fix Patch0:/%%patch mismatch
272
273* Wed Apr 23 2008 Ivana Varekova <varekova@redhat.com> - 8.0.4-4
274- Resolves: #442801 mpstat shows one extra cpu
275  thanks Chris Wright
276
277* Thu Mar  6 2008 Ivana Varekova <varekova@redhat.com> - 8.0.4-3
278- add nfs extended statistic to iostat command
279
280* Thu Feb 28 2008 Ivana Varekova <varekova@redhat.com> - 8.0.4-2
281- retry write functuon in sadc command - thanks Tomas Mraz
282
283* Fri Feb  8 2008 Ivana Varekova <varekova@redhat.com> - 8.0.4-1
284- updated to 8.0.4
285
286* Mon Dec  3 2007 Ivana Varekova <varekova@redhat.com> - 8.0.3-1
287- updated to 8.0.3
288
289* Fri Nov  9 2007 Ivana Varekova <varekova@redhat.com> - 8.0.2-3
290- used macros instead of var, etc
291
292* Thu Nov  8 2007 Ivana Varekova <varekova@redhat.com> - 8.0.2-2
293- change license tag
294- remove sysstat.crond source (add -d)
295- remove obsolete sysconfig file
296- spec file cleanup
297
298* Mon Nov  5 2007 Ivana Varekova <varekova@redhat.com> - 8.0.2-1
299- update 8.0.2
300- spec file cleanup
301
302* Wed Oct 24 2007 Ivana Varekova <varekova@redhat.com> - 8.0.1-2
303- remove useless patches
304
305* Mon Oct 22 2007 Ivana Varekova <varekova@redhat.com> - 8.0.1-1
306- update to 8.0.1
307- remove useless patches
308- spec file cleanup
309- remove smp build flag (ar problem)
310- add libdir flags
311
312* Wed Aug 15 2007 Ivana Varekova <varekova@redhat.com> - 7.0.4-3
313- fix cve-2007-3852 -
314  sysstat insecure temporary file usage
315
316* Fri Mar 23 2007 Ivana Varekova <varekova@redhat.com> - 7.0.4-2
317- fix sa2 problem (sa2 works wrong when the /var/log/sa file is
318  a link to another directory)
319
320* Mon Feb 12 2007 Ivana Varekova <varekova@redhat.com> - 7.0.4-1
321- update to 7.0.4
322- spec file cleanup
323
324* Tue Jan 30 2007 Ivana Varekova <varekova@redhat.com> - 7.0.3-3
325- remove -s flag
326
327* Mon Dec 18 2006 Ivana Varekova <varekova@redhat.com> - 7.0.3-1
328- update to 7.0.3
329
330* Tue Nov 21 2006 Ivana Varekova <varekova@redhat.com> - 7.0.2-3
331- update NFS mount statistic patch
332
333* Wed Nov  8 2006 Ivana Varekova <varekova@redhat.com> - 7.0.2-1
334- update to 7.0.2
335
336* Thu Oct 26 2006 Ivana Varekova <varekova@redhat.com> - 7.0.0-3
337- move tmp file (#208433)
338
339* Mon Oct  9 2006 Ivana Varekova <varekova@redhat.com> - 7.0.0-2
340- add NFS mount statistic (#184321)
341
342* Fri Jul 14 2006 Marcela Maslanova <mmaslano@redhat.com> - 7.0.0-1
343- new version 7.0.0
344
345* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 6.0.2-2.1
346- rebuild
347
348* Mon Jun  5 2006 Jesse Keating <jkeating@redhat.com> 6.0.2-2
349- Add missing BR of gettext
350
351* Fri May  5 2006 Ivana Varekova <varekova@redhat.com> 6.0.2-1
352- update to 6.0.2
353- remove asm/page.h used sysconf command to get PAGE_SIZE
354
355* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 6.0.1-3.2.1
356- bump again for double-long bug on ppc(64)
357
358* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 6.0.1-3.2
359- rebuilt for new gcc4.1 snapshot and glibc changes
360
361* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
362- rebuilt
363
364* Tue Oct 11 2005 Ivana Varekova <varekova@redhat.com> 6.0.1-3
365- add FAQ to documentation (bug 170158)
366
367* Mon Oct 10 2005 Ivana Varekova <varekova@redhat.com> 6.0.1-2
368- fix chkconfig problem
369
370* Fri Oct  7 2005 Ivana Varekova <varekova@redhat.com> 6.0.1-1
371- version 6.0.1
372
373* Thu Aug 18 2005 Florian La Roche <laroche@redhat.com>
374- no need to kernel kernel 2.2 or newer anymore
375
376* Tue May 10 2005 Ivana Varekova <varekova@redhat.com> 5.0.5-10.fc
377- add debug files to debug_package
378
379* Mon Mar  7 2005 Ivana Varekova <varekova@redhat.com> 5.0.5-9.fc
380- rebuilt (add gcc4fix, update lib64ini)
381
382* Fri Mar  4 2005 Ivana Varekova <varekova@redhat.ccm> 5.0.5-7.fc
383- rebuilt
384
385* Thu Sep 30 2004 Charles Bennett <ccb@redhat.com> 5.0.5-5.fc
386- bring in filename and append-msg patch
387- append-msg adds verbose text for when saNN data file cpu count
388-  does not match cpu count on the currently running system
389
390* Wed Jun 30 2004 Nils Philippsen <nphilipp@redhat.com>
391- version 5.0.5
392- remove some obsolete patches
393- update statreset, overrun, lib64init patches
394- renumber patches
395
396* Wed Jun 16 2004 Alan Cox <alan@redhat.com>
397- Fix spew of crap to console at startup
398- Fix order of startup (#124035)
399- Fix array overrun (#117182)
400- Fix interrupt buffer sizing (caused bogus irq info)
401
402* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
403- rebuilt
404
405* Wed Mar 24 2004 Justin Forbes <64bit_fedora@comcast.net> 5.0.1-2
406- fix lib64 init
407
408* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
409- rebuilt
410
411* Wed Feb 18 2004 Nils Philippsen <nphilipp@redhat.com> 5.0.1-1
412- version 5.0.1
413- update statreset patch
414
415* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
416- rebuilt
417
418* Thu Jan 22 2004 Nils Philippsen <nphilipp@redhat.com> 5.0.0-0.6
419- let user configure how long to keep logs through /etc/sysconfig/sysstat
420  (#81294)
421- reset stats at system boot (#102445)
422
423* Wed Jan 21 2004 Nils Philippsen <nphilipp@redhat.com> 5.0.0-0.5
424- fix ifnamsiz patch for s390x (hopefully)
425
426* Tue Jan 20 2004 Nils Philippsen <nphilipp@redhat.com> 5.0.0-0.4
427- fix insecure tmp files in scripts (#78212)
428- require tools needed in scripts
429- use IFNAMSIZ from {_includedir}/linux/if.h for maximum interface length
430
431* Mon Jan 12 2004 Nils Philippsen <nphilipp@redhat.com> 5.0.0-0.3
432- Buildrequires: perl
433- check for %%_lib == lib64 instead of specific arches
434
435* Mon Jan 12 2004 Nils Philippsen <nphilipp@redhat.com> 5.0.0-0.2
436- fix dealing with lib64 case of cron.d file
437
438* Mon Jan 12 2004 Nils Philippsen <nphilipp@redhat.com> 5.0.0-0.1
439- version 5.0.0
440
441* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
442- rebuilt
443
444* Mon Mar  3 2003 Joe Orton <jorton@redhat.com> 4.0.7-4
445- really fix paths for multilib (#82913)
446
447* Wed Feb 19 2003 Bill Nottingham <notting@redhat.com> 4.0.7-3
448- fix paths on multilib arches (#82913)
449
450* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
451- rebuilt
452
453* Sat Nov 23 2002 Mike A. Harris <mharris@redhat.com> 4.0.7-1
454- Updated to new upstream version 4.0.7
455
456* Tue Nov 19 2002 Mike A. Harris <mharris@redhat.com> 4.0.5-7
457- Fixed files installed in /usr/doc to be put in correct place
458
459* Tue Oct  8 2002 Mike A. Harris <mharris@redhat.com> 4.0.5-6
460- All-arch rebuild
461
462* Tue Jul 23 2002 Trond Eivind Glomsrød <teg@redhat.com> 4.0.5-3
463- Rebuild
464
465* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
466- automated rebuild
467
468* Mon Jun 17 2002 Trond Eivind Glomsrød <teg@redhat.com> 4.0.5-1
469- 4.0.5-1
470- isag is no longer installed by default upstream, removing
471  requirement on gnuplot
472
473* Thu May 23 2002 Tim Powers <timp@redhat.com>
474- automated rebuild
475
476* Mon Apr 22 2002 Trond Eivind Glomsrød <teg@redhat.com> 4.0.4-1
477- 4.0.4
478- Add an explicit requires on gnuplot (#63474)
479
480* Fri Apr 12 2002 Trond Eivind Glomsrød <teg@redhat.com> 4.0.3-2
481- Do the daily sa2 run just before midnight, not at 4AM... you'd
482  only get 4 hours worth of data that way (#63132)
483
484* Thu Feb 28 2002 Trond Eivind Glomsrød <teg@redhat.com> 4.0.3-1
485- 4.0.3
486
487* Wed Feb 27 2002 Trond Eivind Glomsrød <teg@redhat.com> 4.0.2-3
488- Rebuild
489
490* Wed Jan 09 2002 Tim Powers <timp@redhat.com>
491- automated rebuild
492
493* Wed Dec 12 2001 Trond Eivind Glomsrød <teg@redhat.com> 4.0.2-1
494- 4.0.2
495- the kernel patch for extended statistics is in, don't say it needs
496  applying in the man page
497
498* Mon Aug 13 2001 Preston Brown <pbrown@redhat.com>
499- be more verbose about which files are corrupt (#47122)
500
501* Mon Jul  2 2001 Preston Brown <pbrown@redhat.com>
502- run sa1 from cron.d to fix run-parts interaction problem (#37733)
503
504* Fri Jun 29 2001 Preston Brown <pbrown@redhat.com>
505- upgrade to 4.0.1 stable release
506
507* Sun Jun 24 2001 Elliot Lee <sopwith@redhat.com>
508- Bump release + rebuild.
509
510* Sun Apr  8 2001 Preston Brown <pbrown@redhat.com>
511- explicitly set safe umask (#35142)
512
513* Fri Mar  9 2001 Preston Brown <pbrown@redhat.com>
514- iostat disk utilization was off by a factor of 10.
515
516* Wed Feb 14 2001 Preston Brown <pbrown@redhat.com>
517- 3.3.5 brings us full support for kernel IO stats
518
519* Tue Jan 30 2001 Preston Brown <pbrown@redhat.com>
520- Summarize previous day's activity with sa2, not current day (which is only 4 hours of data when it gets run) (#24820)
521- upgrade to 3.3.4 for full 2.4 compatibility and improved iostat
522
523* Wed Jan 17 2001 Preston Brown <pbrown@redhat.com>
524- iostat man page fixes
525
526* Fri Jan 05 2001 Preston Brown <pbrown@redhat.com>
527- 3.3.3, crontab fixes
528
529* Fri Dec 29 2000 Bill Nottingham <notting@redhat.com>
530- fix prereqs
531
532* Fri Oct 13 2000 Preston Brown <pbrown@redhat.com>
533- crontab entry was still incorrect.  Fixed.
534
535* Mon Oct 09 2000 Preston Brown <pbrown@redhat.com>
536- make sure disk accounting is enabled to fix iostat -l, -p (#16268)
537- crontab entries were missing the user (root) to run as (#18212)
538
539* Tue Aug 22 2000 Preston Brown <pbrown@redhat.com>
540- enable IO accounting now that kernel supports it
541
542* Wed Aug 16 2000 Nalin Dahyabhai <nalin@redhat.com>
543- fix buildrooting (#16271)
544
545* Tue Aug 08 2000 Preston Brown <pbrown@redhat.com>
546- bugfixes in 3.2.4 cause our inclusion. :)
547
548* Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
549- automatic rebuild
550
551* Thu Jun 29 2000 Preston Brown <pbrown@redhat.com>
552- 3.2.3 fixes SMP race condition
553
554* Tue Jun 20 2000 Preston Brown <pbrown@redhat.com>
555- FHS macros
556- 3.2.2
557
558* Fri May 26 2000 Preston Brown <pbrown@redhat.com>
559- packaged for Winston
560- change va patch to indicate kernel is not patched for iostat accounting.
561  re-enable if our stock kernel gets this patch.
562- upgrade to 3.2.
563- install crontab entry.
564
565* Sun Dec 12 1999  Ian Macdonald <ian@caliban.org>
566- upgraded to 2.2
567
568* Fri Oct 29 1999  Ian Macdonald <ian@caliban.org>
569- first RPM release (2.1)
Note: See TracBrowser for help on using the repository browser.