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