]> granicus.if.org Git - sysstat/commitdiff
sysstat-12.1.3 v12.1.3
authorSebastien GODARD <sysstat@users.noreply.github.com>
Fri, 15 Feb 2019 09:43:39 +0000 (10:43 +0100)
committerSebastien GODARD <sysstat@users.noreply.github.com>
Fri, 15 Feb 2019 09:43:39 +0000 (10:43 +0100)
sysstat version 12.1.3 final packaging.
lsm and spec files updated.
Changelog added.
Copyright year updated (2018 > 2019)

With this version, the user will be able to select different color
palettes to draw the SVG graphs with sadf. One of those palettes can be
fully customized using an environment variable (S_COLORS_PALETTE).
This version also adds a new flag (-f) to sadc to force fdatasync() use
when data are written (this feature has been contributed by Kyle
Walker).

Signed-off-by: Sebastien GODARD <sysstat@users.noreply.github.com>
49 files changed:
CHANGES
Makefile.in
README.md
activity.c
common.c
common.h
count.c
count.h
format.c
iostat.c
iostat.h
json_stats.c
json_stats.h
mpstat.c
mpstat.h
nls/sysstat.pot
pidstat.c
pidstat.h
pr_stats.c
pr_stats.h
raw_stats.c
raw_stats.h
rd_sensors.c
rd_sensors.h
rd_stats.c
rd_stats.h
rndr_stats.c
rndr_stats.h
sa.h
sa1.in
sa2.in
sa_common.c
sa_conv.c
sa_conv.h
sa_wrap.c
sadc.c
sadf.c
sadf.h
sadf_misc.c
sar.c
svg_stats.c
svg_stats.h
sysconfig.in
sysstat-12.1.3.lsm [moved from sysstat-12.1.2.lsm with 89% similarity]
sysstat-12.1.3.spec [moved from sysstat-12.1.2.spec with 99% similarity]
sysstat.in
version.in
xml_stats.c
xml_stats.h

diff --git a/CHANGES b/CHANGES
index 73c7a4efed01293d660525bf62c1bc5e13335648..32002a8778b27343d905f6cc2a5577b7016987c6 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,5 +1,16 @@
 Changes:
 
+2019/02/15: Version 12.1.3 - Sebastien Godard (sysstat <at> orange.fr)
+       * sadf: SVG: Add new "customcol" and "bwcol" options. These options
+         enable the user to select distinct color palettes to draw the
+         graphs with "sadf -g".
+       * sadf: SVG: Make it possible for the user to customize color palette
+         used to draw graphs.
+       * sadf: SVG: Fix wrong variable used to draw discard IO graph.
+       * [Kyle Walker]: sadc: Add -f flag to force fdatasync() use.
+       * sadf and sadc manual pages updated.
+       * NLS translations updated.
+
 2018/12/14: Version 12.1.2 - Sebastien Godard (sysstat <at> orange.fr)
        * sadf: Fix out of bound reads security issues (CVE-2018-19416 and
          CVE-2018-19517) [12.0.3].
index a3ba6933e1dcccdc5727622bfb1680db4b64014a..b59f28b00b774e38886aa3b94341f2934c043bb5 100644 (file)
@@ -1,5 +1,5 @@
 # Makefile to build sysstat commands
-# (C) 1999-2018 Sebastien GODARD (sysstat <at> orange.fr)
+# (C) 1999-2019 Sebastien GODARD (sysstat <at> orange.fr)
 
 # Version and package name
 VERSION = @PACKAGE_VERSION@
index bdf34df4beaf433651450f42f06c3bb88ba06682..eed68e48ed81e3c19b626d65bd9349a4a36df3cb 100644 (file)
--- a/README.md
+++ b/README.md
@@ -5,7 +5,7 @@
 [![Total Alerts](https://img.shields.io/lgtm/alerts/g/sysstat/sysstat.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/sysstat/sysstat/alerts)
 [![Donate](https://img.shields.io/badge/Donate-PayPal-blue.svg)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=45U6F9R73ESFQ)
 
-(C) 1999-2018 Sebastien GODARD (sysstat (at) orange (dot) fr)
+(C) 1999-2019 Sebastien GODARD (sysstat (at) orange (dot) fr)
 
 ### Introduction
 
index 32862206f8ed1e59deb60a2dbf9db7022e5c5537..5276762767201b6d0adc2e139dfac2bc83e2e87e 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * activity.c: Define system activities available for sar/sadc.
- * (C) 1999-2018 by Sebastien GODARD (sysstat <at> orange.fr)
+ * (C) 1999-2019 by Sebastien GODARD (sysstat <at> orange.fr)
  *
  ***************************************************************************
  * This program is free software; you can redistribute it and/or modify it *
index bdcaa50de93f132f97ebe9e939e969b9e1469572..9dfaf27d08fd6e6f3d852c7fc1957e401a4a5e77 100644 (file)
--- a/common.c
+++ b/common.c
@@ -1,6 +1,6 @@
 /*
  * sar, sadc, sadf, mpstat and iostat common routines.
- * (C) 1999-2018 by Sebastien GODARD (sysstat <at> orange.fr)
+ * (C) 1999-2019 by Sebastien GODARD (sysstat <at> orange.fr)
  *
  ***************************************************************************
  * This program is free software; you can redistribute it and/or modify it *
index 547a754564be80558f91f6a58d7e6a000d24d04d..af0191532e4dfed6fcede21d658d067fd57a5b66 100644 (file)
--- a/common.h
+++ b/common.h
@@ -1,6 +1,6 @@
 /*
  * sysstat: System performance tools for Linux
- * (C) 1999-2018 by Sebastien Godard (sysstat <at> orange.fr)
+ * (C) 1999-2019 by Sebastien Godard (sysstat <at> orange.fr)
  */
 
 #ifndef _COMMON_H
diff --git a/count.c b/count.c
index b57caaca898d6c46a225c4973b4df5d3c4d633a8..03469b0bf29716d5040cc361fbee80633b7ba9e4 100644 (file)
--- a/count.c
+++ b/count.c
@@ -1,6 +1,6 @@
 /*
  * count.c: Count items for which statistics will be collected.
- * (C) 1999-2018 by Sebastien GODARD (sysstat <at> orange.fr)
+ * (C) 1999-2019 by Sebastien GODARD (sysstat <at> orange.fr)
  *
  ***************************************************************************
  * This program is free software; you can redistribute it and/or modify it *
diff --git a/count.h b/count.h
index 8cf54f178f2814ff9a50139d2e24098af8d25348..5358e66e40df88926771bc84940d6b2519d5eeb1 100644 (file)
--- a/count.h
+++ b/count.h
@@ -1,7 +1,7 @@
 /*
  * count.h: Include file used to count items for which
  * statistics will be collected.
- * (C) 1999-2018 by Sebastien Godard (sysstat <at> orange.fr)
+ * (C) 1999-2019 by Sebastien Godard (sysstat <at> orange.fr)
  */
 
 #ifndef _COUNT_H
index fd6dffb10c948fa517ee86451ab3d1500c5aa1f6..cf609e420ead2ace765f0670e1127d542f043c93 100644 (file)
--- a/format.c
+++ b/format.c
@@ -1,6 +1,6 @@
 /*
  * format.c: Output format definitions for sadf and sar
- * (C) 2011-2018 by Sebastien GODARD (sysstat <at> orange.fr)
+ * (C) 2011-2019 by Sebastien GODARD (sysstat <at> orange.fr)
  *
  ***************************************************************************
  * This program is free software; you can redistribute it and/or modify it *
index 46355b077387d44d8ce00acae167efd5d5c77add..ff16863f6f9c0f0048fa97e29bd92ea6e005ba2f 100644 (file)
--- a/iostat.c
+++ b/iostat.c
@@ -1,6 +1,6 @@
 /*
  * iostat: report CPU and I/O statistics
- * (C) 1998-2018 by Sebastien GODARD (sysstat <at> orange.fr)
+ * (C) 1998-2019 by Sebastien GODARD (sysstat <at> orange.fr)
  *
  ***************************************************************************
  * This program is free software; you can redistribute it and/or modify it *
index c6196f54084d17af74b0c0bffcf7e97ddf039f1f..ce6ccc13f77f6baf4869ed67a32bf39adbf0eea3 100644 (file)
--- a/iostat.h
+++ b/iostat.h
@@ -1,6 +1,6 @@
 /*
  * iostat: report CPU and I/O statistics
- * (C) 1999-2018 by Sebastien Godard (sysstat <at> orange.fr)
+ * (C) 1999-2019 by Sebastien Godard (sysstat <at> orange.fr)
  */
 
 #ifndef _IOSTAT_H
index 3f21bcb8bfa70ded752aa4482ec41c52507a2507..1638abe52735af4712b5742a5fb78893e76deb93 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * json_stats.c: Funtions used by sadf to display statistics in JSON format.
- * (C) 1999-2018 by Sebastien GODARD (sysstat <at> orange.fr)
+ * (C) 1999-2019 by Sebastien GODARD (sysstat <at> orange.fr)
  *
  ***************************************************************************
  * This program is free software; you can redistribute it and/or modify it *
index f7a826080dd68b0689d237d262532c66bf1c00a4..09dc438da10b0ecd5f4c623c55660b408646bfcf 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * json_stats.h: Include file used to display system statistics in JSON format.
- * (C) 1999-2018 by Sebastien Godard (sysstat <at> orange.fr)
+ * (C) 1999-2019 by Sebastien Godard (sysstat <at> orange.fr)
  */
 
 #ifndef _JSON_STATS_H
index b32510b3045a90061bd4ee83e36734deffaeb70c..47ea209caf25eb7fc37c71d3a238f1ea3822a971 100644 (file)
--- a/mpstat.c
+++ b/mpstat.c
@@ -1,6 +1,6 @@
 /*
  * mpstat: per-processor statistics
- * (C) 2000-2018 by Sebastien GODARD (sysstat <at> orange.fr)
+ * (C) 2000-2019 by Sebastien GODARD (sysstat <at> orange.fr)
  *
  ***************************************************************************
  * This program is free software; you can redistribute it and/or modify it *
index 2ceeb87cad5af1da54c477827dd5520bc0006ac8..1f7a5fb6be525c4713ef2cd17279cb5a3e269643 100644 (file)
--- a/mpstat.h
+++ b/mpstat.h
@@ -1,6 +1,6 @@
 /*
  * mpstat: per-processor statistics
- * (C) 2000-2018 by Sebastien Godard (sysstat <at> orange.fr)
+ * (C) 2000-2019 by Sebastien Godard (sysstat <at> orange.fr)
  */
 
 #ifndef _MPSTAT_H
index 07cd5f633ff9997145edd4b48328378cbaef87fd..d6beedc09456846ab6e03ce550ad62647929c8cc 100644 (file)
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: sysstat <at> orange.fr\n"
-"POT-Creation-Date: 2019-02-15 09:41+0100\n"
+"POT-Creation-Date: 2019-02-15 10:36+0100\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
index 73fcb4c4ec8bb257def5225f8426b465c0814712..6977f1f966d4236653064550e9ccb5ac17ca0acf 100644 (file)
--- a/pidstat.c
+++ b/pidstat.c
@@ -1,6 +1,6 @@
 /*
  * pidstat: Report statistics for Linux tasks
- * (C) 2007-2018 by Sebastien GODARD (sysstat <at> orange.fr)
+ * (C) 2007-2019 by Sebastien GODARD (sysstat <at> orange.fr)
  *
  ***************************************************************************
  * This program is free software; you can redistribute it and/or modify it *
index c935b4122620808f7e6e55cda8de34059b7db186..6bd6fde6d7755357f09d6e311c05c225705e40a9 100644 (file)
--- a/pidstat.h
+++ b/pidstat.h
@@ -1,6 +1,6 @@
 /*
  * pidstat: Display per-process statistics.
- * (C) 2007-2018 by Sebastien Godard (sysstat <at> orange.fr)
+ * (C) 2007-2019 by Sebastien Godard (sysstat <at> orange.fr)
  */
 #ifndef _PIDSTAT_H
 #define _PIDSTAT_H
index af5cff087a870682637fae7b520f1d0d784a9ae8..e2e6596b17b79bfdfee5fe1317488f86932f6754 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * pr_stats.c: Functions used by sar to display statistics
- * (C) 1999-2018 by Sebastien GODARD (sysstat <at> orange.fr)
+ * (C) 1999-2019 by Sebastien GODARD (sysstat <at> orange.fr)
  *
  ***************************************************************************
  * This program is free software; you can redistribute it and/or modify it *
index a56b5189faf37a605f530df6aa5c377eae49224e..2f9e5ac8d40ba341e9705e44409fa6eefc072d80 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * pr_stats.h: Include file used to display system statistics
- * (C) 1999-2018 by Sebastien Godard (sysstat <at> orange.fr)
+ * (C) 1999-2019 by Sebastien Godard (sysstat <at> orange.fr)
  */
 
 #ifndef _PR_STATS_H
index 2d9ca68fe3caa5838e8d3b2cbe15501a5df07489..efa1f8115252e51bff080ad0515e15ff77795318 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * raw_stats.c: Functions used by sar to display statistics in raw format.
- * (C) 1999-2018 by Sebastien GODARD (sysstat <at> orange.fr)
+ * (C) 1999-2019 by Sebastien GODARD (sysstat <at> orange.fr)
  *
  ***************************************************************************
  * This program is free software; you can redistribute it and/or modify it *
index 83ed347dee7cbc1552d4b7048383e83722672ddc..a6520a71f628b599578ef982edb2e57310f49589 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * raw_stats.h: Include file used to display statistics in raw format.
- * (C) 1999-2018 by Sebastien Godard (sysstat <at> orange.fr)
+ * (C) 1999-2019 by Sebastien Godard (sysstat <at> orange.fr)
  */
 
 #ifndef _RAW_STATS_H
index a5a0afb4455cffd6550f8df9669a31d0c81877fe..ca7747e8bae9b7e49fb7b5510b56f644afb60e67 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * rd_sensors.c: Read sensors statistics
- * (C) 1999-2018 by Sebastien GODARD (sysstat <at> orange.fr)
+ * (C) 1999-2019 by Sebastien GODARD (sysstat <at> orange.fr)
  *
  ***************************************************************************
  * This program is free software; you can redistribute it and/or modify it *
index 05390404c6fa9c3c4ab3ce76e7585dd45b45a5c1..fce85f8c84995239a4ea5735516dbb4bce36ad37 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * rd_sensors.h: Include file used to read sensors statistics
- * (C) 1999-2018 by Sebastien Godard (sysstat <at> orange.fr)
+ * (C) 1999-2019 by Sebastien Godard (sysstat <at> orange.fr)
  */
 
 #ifndef _RD_SENSORS_H
index 1d4a73841e67a5382536343914b7baab6debbd60..61dc95852ffec31563d88845e8ba417e8f322a16 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * rd_stats.c: Read system statistics
- * (C) 1999-2018 by Sebastien GODARD (sysstat <at> orange.fr)
+ * (C) 1999-2019 by Sebastien GODARD (sysstat <at> orange.fr)
  *
  ***************************************************************************
  * This program is free software; you can redistribute it and/or modify it *
index d49afadea3769876ad3ed19e6a9a753d3fb35a57..0a0b68505ba4eb1b892986af5ef31fe3899a0c38 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * rd_stats.h: Include file used to read system statistics
- * (C) 1999-2018 by Sebastien Godard (sysstat <at> orange.fr)
+ * (C) 1999-2019 by Sebastien Godard (sysstat <at> orange.fr)
  */
 
 #ifndef _RD_STATS_H
index 4a5d8e6bb43831ce3bf5f18316d535152dd2392d..56cb5a25339426b3283d8c61a78d9fb2cee1a93c 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * rndr_stats.c: Funtions used by sadf to display statistics in selected format.
- * (C) 1999-2018 by Sebastien GODARD (sysstat <at> orange.fr)
+ * (C) 1999-2019 by Sebastien GODARD (sysstat <at> orange.fr)
  *
  ***************************************************************************
  * This program is free software; you can redistribute it and/or modify it *
index 65843d1406ddc8d10560f4e429e9226b5c9762d8..9136ae253c0e22736955daae6fc15300f3d98fcc 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * rndr_stats.h: Include file used to display system statistics in selected format.
- * (C) 1999-2018 by Sebastien Godard (sysstat <at> orange.fr)
+ * (C) 1999-2019 by Sebastien Godard (sysstat <at> orange.fr)
  */
 
 #ifndef _RNDR_STATS_H
diff --git a/sa.h b/sa.h
index d3236f7cf7f772c523ada45568293ae61f390725..b6deaef1eeb0dde3fe65ce3c11f8efde8803d9c5 100644 (file)
--- a/sa.h
+++ b/sa.h
@@ -1,6 +1,6 @@
 /*
  * sar/sadc: Report system activity
- * (C) 1999-2018 by Sebastien Godard (sysstat <at> orange.fr)
+ * (C) 1999-2019 by Sebastien Godard (sysstat <at> orange.fr)
  */
 
 #ifndef _SA_H
diff --git a/sa1.in b/sa1.in
index 42d16b3e78f0a2222257baeb6332b1a88bacb656..6dca6168364fcee1cc14d49e1c66ba947047bb15 100644 (file)
--- a/sa1.in
+++ b/sa1.in
@@ -1,6 +1,6 @@
 #!/bin/sh
 # @SA_LIB_DIR@/sa1
-# (C) 1999-2018 Sebastien Godard (sysstat <at> orange.fr)
+# (C) 1999-2019 Sebastien Godard (sysstat <at> orange.fr)
 #
 #@(#) @PACKAGE_NAME@-@PACKAGE_VERSION@
 #@(#) sa1: Collect and store binary data in system activity data file.
diff --git a/sa2.in b/sa2.in
index 4dcf06c05503083022146845c6428e13933d0f94..4d48aeadd92f4ec80bdd87b90cb51e46faadd9e2 100644 (file)
--- a/sa2.in
+++ b/sa2.in
@@ -1,6 +1,6 @@
 #!/bin/sh
 # @SA_LIB_DIR@/sa2
-# (C) 1999-2018 Sebastien Godard (sysstat <at> orange.fr)
+# (C) 1999-2019 Sebastien Godard (sysstat <at> orange.fr)
 #
 #@(#) @PACKAGE_NAME@-@PACKAGE_VERSION@
 #@(#) sa2: Write a daily report
index 18fec029bd469ff58d7cca700c07aa56db40e32a..7c1fd9bce3e8386c06dd889775ed4628a43a75c9 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * sar and sadf common routines.
- * (C) 1999-2018 by Sebastien GODARD (sysstat <at> orange.fr)
+ * (C) 1999-2019 by Sebastien GODARD (sysstat <at> orange.fr)
  *
  ***************************************************************************
  * This program is free software; you can redistribute it and/or modify it *
index f25799118cde220125a5b69cb0ac5c0a299c7a7a..462b3b91a824357c15cb82b073c0a4790bda56a9 100644 (file)
--- a/sa_conv.c
+++ b/sa_conv.c
@@ -1,6 +1,6 @@
 /*
  * sa_conv.c: Convert an old format sa file to the up-to-date format.
- * (C) 1999-2018 by Sebastien GODARD (sysstat <at> orange.fr)
+ * (C) 1999-2019 by Sebastien GODARD (sysstat <at> orange.fr)
  *
  ***************************************************************************
  * This program is free software; you can redistribute it and/or modify it *
index 8acfdee0db70fea90280e4a286125c2a7681ed2f..3b9820c46610df322e99c6912d51edf982825d2d 100644 (file)
--- a/sa_conv.h
+++ b/sa_conv.h
@@ -1,6 +1,6 @@
 /*
  * sa_conv.h: Include file for "sadf -c" command.
- * (C) 1999-2018 by Sebastien Godard (sysstat <at> orange.fr)
+ * (C) 1999-2019 by Sebastien Godard (sysstat <at> orange.fr)
  */
 
 #ifndef _SA_CONV_H
index c7577269eaab555f7da5601748f1da2bcf38eb16..ebf5f8ce51f9efe58a20bd43b900e545976c2cf0 100644 (file)
--- a/sa_wrap.c
+++ b/sa_wrap.c
@@ -1,6 +1,6 @@
 /*
  * sysstat - sa_wrap.c: Functions used in activity.c
- * (C) 1999-2018 by Sebastien GODARD (sysstat <at> orange.fr)
+ * (C) 1999-2019 by Sebastien GODARD (sysstat <at> orange.fr)
  *
  ***************************************************************************
  * This program is free software; you can redistribute it and/or modify it *
diff --git a/sadc.c b/sadc.c
index d76f2dd5775611ed10055f250a7ebb48913b7334..4d62e37f550e88d7f9a0feeb2974f5920af50a79 100644 (file)
--- a/sadc.c
+++ b/sadc.c
@@ -1,6 +1,6 @@
 /*
  * sadc: system activity data collector
- * (C) 1999-2018 by Sebastien GODARD (sysstat <at> orange.fr)
+ * (C) 1999-2019 by Sebastien GODARD (sysstat <at> orange.fr)
  *
  ***************************************************************************
  * This program is free software; you can redistribute it and/or modify it *
diff --git a/sadf.c b/sadf.c
index 927838d49a04eeb9f024748ede83c598866fcd31..0334cb010a06ebe79dc1bafcf0d73369787d5e2e 100644 (file)
--- a/sadf.c
+++ b/sadf.c
@@ -1,6 +1,6 @@
 /*
  * sadf: system activity data formatter
- * (C) 1999-2018 by Sebastien GODARD (sysstat <at> orange.fr)
+ * (C) 1999-2019 by Sebastien GODARD (sysstat <at> orange.fr)
  *
  ***************************************************************************
  * This program is free software; you can redistribute it and/or modify it *
diff --git a/sadf.h b/sadf.h
index 3540a1ed1b7d145b7a24d1dda8bd75244e7777d2..b780320362eb1bf5873f23385448da881cc7ee70 100644 (file)
--- a/sadf.h
+++ b/sadf.h
@@ -1,6 +1,6 @@
 /*
  * sadf: System activity data formatter
- * (C) 1999-2018 by Sebastien Godard (sysstat <at> orange.fr)
+ * (C) 1999-2019 by Sebastien Godard (sysstat <at> orange.fr)
  */
 
 #ifndef _SADF_H
index e40f03eb444eec445b7927973944881996ea8c80..9242ac2d14a9c0fa16c2046031d6f48b74e69b86 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * sadf_misc.c: Funtions used by sadf to display special records
- * (C) 2011-2018 by Sebastien GODARD (sysstat <at> orange.fr)
+ * (C) 2011-2019 by Sebastien GODARD (sysstat <at> orange.fr)
  *
  ***************************************************************************
  * This program is free software; you can redistribute it and/or modify it *
diff --git a/sar.c b/sar.c
index 669b153c15bcbefd8e7acb3808e9de555a10faa0..22549dd743870845c30884bb23227014c1de764e 100644 (file)
--- a/sar.c
+++ b/sar.c
@@ -1,6 +1,6 @@
 /*
  * sar: report system activity
- * (C) 1999-2018 by Sebastien GODARD (sysstat <at> orange.fr)
+ * (C) 1999-2019 by Sebastien GODARD (sysstat <at> orange.fr)
  *
  ***************************************************************************
  * This program is free software; you can redistribute it and/or modify it *
index beb8a14d228f4a10013dda9e45776d431756724d..421265466c225137e3a701693e3fb3cde1a96302 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * svg_stats.c: Funtions used by sadf to display statistics in SVG format.
- * (C) 2016-2018 by Sebastien GODARD (sysstat <at> orange.fr)
+ * (C) 2016-2019 by Sebastien GODARD (sysstat <at> orange.fr)
  *
  ***************************************************************************
  * This program is free software; you can redistribute it and/or modify it *
index add6223d3fc127b39db7be083e68e2130934dcae..8ab2fd13ede269e386c7e90e2eaf4a005c801750 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * svg_stats.h: Include file used to display system statistics in SVG format.
- * (C) 2016-2018 by Sebastien Godard (sysstat <at> orange.fr)
+ * (C) 2016-2019 by Sebastien Godard (sysstat <at> orange.fr)
  */
 
 #ifndef _SVG_STATS_H
index 03d9c0a415fe46bc44c7e745458c5e767319db28..93e6e0a32e4e50eeeb78386894675fa462d86cd5 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * sysstat: System performance tools for Linux
- * (C) 1999-2018 by Sebastien Godard (sysstat <at> orange.fr)
+ * (C) 1999-2019 by Sebastien Godard (sysstat <at> orange.fr)
  */
 
 #ifndef _SYSCONFIG_H
similarity index 89%
rename from sysstat-12.1.2.lsm
rename to sysstat-12.1.3.lsm
index 32a677955192a033757e97641a8111ac396a267f..ddc01001899e74eb0bf01e6a4f6fac898832ab99 100644 (file)
@@ -1,7 +1,7 @@
 Begin4
 Title:         sysstat - the sar, sadf, mpstat, iostat, tapestat, pidstat and cifsiostat commands for Linux
-Version:       12.1.2
-Entered-date:  2018-12-14
+Version:       12.1.3
+Entered-date:  2019-02-15
 Description:   The sysstat package contains the sar, sadf, mpstat, iostat, tapestat,
                pidstat, cifsiostat and sa tools for Linux.
                The sar command collects and reports system activity
@@ -29,11 +29,11 @@ Keywords:   system administration, system monitoring, sar, sadf, iostat, mpstat, t
 Author:                sysstat@NOSPAM.orange.fr (Sebastien Godard)
 Maintained-by: sysstat@NOSPAM.orange.fr (Sebastien Godard)
 Primary-site:  http://pagesperso-orange.fr/sebastien.godard/
-               775kiB sysstat-12.1.2.tar.gz
-               680kiB sysstat-12.1.2.tar.bz2
-               594kiB sysstat-12.1.2.tar.xz
-               783kiB sysstat-12.1.2-1.src.rpm
-               380kiB sysstat-12.1.2-1.x86_64.rpm
+               704kiB sysstat-12.1.3.tar.gz
+               613kiB sysstat-12.1.3.tar.bz2
+               542kiB sysstat-12.1.3.tar.xz
+               713kiB sysstat-12.1.3-1.src.rpm
+               381kiB sysstat-12.1.3-1.x86_64.rpm
 Alternate-site:
 Copying-policy:        GPL
 End
similarity index 99%
rename from sysstat-12.1.2.spec
rename to sysstat-12.1.3.spec
index 4020ba547f7711080d6a9ccd3dde6cb953baf63a..a09ff88cba6275b0772570ca14205cc77049e59c 100644 (file)
@@ -1,6 +1,6 @@
 Summary:       SAR, SADF, MPSTAT, IOSTAT, TAPESTAT, PIDSTAT and CIFSIOSTAT for Linux
 Name:          sysstat
-Version:       12.1.2
+Version:       12.1.3
 Release:       1
 License:       GPL
 Group:                 Applications/System
index fea5001ed9df263cd0f7645c7438fbd2634b14c6..5ce61682a8e5aee0ced1cd85a7e4878721b605ab 100644 (file)
@@ -4,7 +4,7 @@
 # description: Reset the system activity logs
 #
 # @INIT_DIR@/sysstat
-# (C) 2000-2018 Sebastien Godard (sysstat <at> orange.fr)
+# (C) 2000-2019 Sebastien Godard (sysstat <at> orange.fr)
 #
 ### BEGIN INIT INFO
 # Provides:            sysstat
index ddda018ff568637e86aa92fca3b806b1eda74eb6..df93a3b78b2f552bd163ab1db3eed57fe7106858 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * sysstat: System performance tools for Linux
- * (C) 1999-2018 by Sebastien Godard (sysstat <at> orange.fr)
+ * (C) 1999-2019 by Sebastien Godard (sysstat <at> orange.fr)
  */
 
 #ifndef _VERSION_H
index 854edcd277ea70422df686c8a82e4c996e1312a2..cc3a65c4625b407678ee5cdeee0301b267f20e5f 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * xml_stats.c: Funtions used by sadf to display statistics in XML.
- * (C) 1999-2018 by Sebastien GODARD (sysstat <at> orange.fr)
+ * (C) 1999-2019 by Sebastien GODARD (sysstat <at> orange.fr)
  *
  ***************************************************************************
  * This program is free software; you can redistribute it and/or modify it *
index 652d6edd8b6a4cbd9bce04f572c8b1982c1ab616..d9b95493465d70cbe1734c641b2ff6483539c824 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * xml_stats.h: Include file used to display system statistics in XML.
- * (C) 1999-2018 by Sebastien Godard (sysstat <at> orange.fr)
+ * (C) 1999-2019 by Sebastien Godard (sysstat <at> orange.fr)
  */
 
 #ifndef _XML_STATS_H