sysstat-vl.spec 18 KB

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