]> git.pld-linux.org Git - packages/sysstat.git/blobdiff - sysstat.spec
Release: 2
[packages/sysstat.git] / sysstat.spec
index bbc16b33e0e11d7a293a34a3f350119d76c6afa5..79acf4ad9587c3283af0db3758bd4b191238d97a 100644 (file)
@@ -1,5 +1,3 @@
-# TODO:
-# - if running at systemd, cron job is not neccessary (it has the timers)
 #
 # Fix or remove  install.patch (seems systemd files are installed now)
 Summary:       The sar and iostat system monitoring commands
@@ -8,15 +6,16 @@ Summary(ru.UTF-8):    Содержит программы системного мо
 Summary(uk.UTF-8):     Містить команди системного моніторингу sar та iostat
 Summary(zh_CN.UTF-8):  sar, iostat 等系统监视工具
 # use stable versions
-# Sysstat 11.3.x (development version).
+# Sysstat 11.5.x (development version).
+# Sysstat 11.4.x (stable version).
 # Sysstat 11.2.x (stable version).
 Name:          sysstat
-Version:       11.2.0
+Version:       11.4.3
 Release:       2
 License:       GPL v2
 Group:         Applications/System
 Source0:       http://pagesperso-orange.fr/sebastien.godard/%{name}-%{version}.tar.xz
-# Source0-md5: e8b615775ad98780e3f0675b91eddb19
+# Source0-md5: 76e449bb83a25d95355694338b5ace70
 Source2:       %{name}.init
 Source3:       crontab
 Patch1:                install.patch
@@ -29,7 +28,7 @@ BuildRequires:        rpmbuild(macros) >= 1.671
 BuildRequires: tar >= 1:1.22
 BuildRequires: xz
 Requires(post,preun):  /sbin/chkconfig
-Requires:      crondaemon
+Requires:      cronjobs
 Requires:      rc-scripts
 Requires:      systemd-units >= 38
 Obsoletes:     iostat
@@ -125,19 +124,28 @@ fi
 %systemd_trigger sysstat.service
 
 %triggerpostun -- %{name} < 11.2.0-2
+C=0
 for log in /var/log/sa/sa[0-9]*; do
        if (LC_ALL=C %{_bindir}/sadf -C "$log" 2>&1 | grep -q "Current sysstat version cannot read the format of this file"); then
                echo "Converting file $log to current format: "
-               %{_bindir}/sadf -c "$log" > "$log.migrate"
-               chown --reference "$log" "$log.migrate"
-               chmod --reference "$log" "$log.migrate"
-               mv "$log.migrate" "$log"
+               if (%{_bindir}/sadf -c "$log" > "$log.migrate"); then
+                       chown --reference "$log" "$log.migrate"
+                       chmod --reference "$log" "$log.migrate"
+                       mv "$log.migrate" "$log"
+                       C=1
+               else
+                       echo "$log MIGRATION FAILED." >&2
+               fi
        fi
 done
+if [ "$C" -eq 1 ]; then
+       %service sysstat restart
+       %systemd_post sysstat.service
+fi
 
 %files -f %{name}.lang
 %defattr(644,root,root,755)
-%doc CHANGES CREDITS README FAQ
+%doc CHANGES CREDITS README.md FAQ
 %attr(755,root,root) %{_bindir}/cifsiostat
 %attr(755,root,root) %{_bindir}/iostat
 %attr(755,root,root) %{_bindir}/mpstat
This page took 0.048436 seconds and 4 git commands to generate.