Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package rollback-helper for openSUSE:Factory
checked in at 2024-03-01 23:39:18
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/rollback-helper (Old)
and /work/SRC/openSUSE:Factory/.rollback-helper.new.1770 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "rollback-helper"
Fri Mar 1 23:39:18 2024 rev:8 rq:1154055 version:1.0+git20240301.73ac53e
Changes:
--------
--- /work/SRC/openSUSE:Factory/rollback-helper/rollback-helper.changes
2019-01-11 14:06:58.771710070 +0100
+++
/work/SRC/openSUSE:Factory/.rollback-helper.new.1770/rollback-helper.changes
2024-03-01 23:39:20.145552622 +0100
@@ -1,0 +2,6 @@
+Fri Mar 01 13:02:59 UTC 2024 - [email protected]
+
+- Update to version 1.0+git20240301.73ac53e:
+ * Report an error if all SUSEConnect calls fail
+
+-------------------------------------------------------------------
Old:
----
rollback-helper-1.0+git20181218.5394d6e.tar.xz
New:
----
rollback-helper-1.0+git20240301.73ac53e.tar.xz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ rollback-helper.spec ++++++
--- /var/tmp/diff_new_pack.YVxLvl/_old 2024-03-01 23:39:20.677571860 +0100
+++ /var/tmp/diff_new_pack.YVxLvl/_new 2024-03-01 23:39:20.677571860 +0100
@@ -17,7 +17,7 @@
Name: rollback-helper
-Version: 1.0+git20181218.5394d6e
+Version: 1.0+git20240301.73ac53e
Release: 0
Summary: Helper Scripts for system rollback
License: GPL-2.0-or-later
++++++ _service ++++++
--- /var/tmp/diff_new_pack.YVxLvl/_old 2024-03-01 23:39:20.721573451 +0100
+++ /var/tmp/diff_new_pack.YVxLvl/_new 2024-03-01 23:39:20.725573595 +0100
@@ -2,7 +2,7 @@
<service name="tar_scm" mode="disabled">
<param name="version">1.0</param>
<param name="versionformat">1.0+git%cd.%h</param>
- <param name="url">git://github.com/openSUSE/rollback-helper.git</param>
+ <param name="url">https://github.com/openSUSE/rollback-helper.git</param>
<param name="scm">git</param>
<param name="changesgenerate">enable</param>
</service>
++++++ _servicedata ++++++
--- /var/tmp/diff_new_pack.YVxLvl/_old 2024-03-01 23:39:20.749574463 +0100
+++ /var/tmp/diff_new_pack.YVxLvl/_new 2024-03-01 23:39:20.749574463 +0100
@@ -1,7 +1,7 @@
<servicedata>
<service name="tar_scm">
- <param name="url">git://github.com/openSUSE/rollback-helper.git</param>
- <param
name="changesrevision">a885e163ddcf545ad418751f007305625bdfc192</param>
+ <param name="url">https://github.com/openSUSE/rollback-helper.git</param>
+ <param
name="changesrevision">73ac53ef74ae7ea7810bc3b58c0abf9dcd47a369</param>
</service>
</servicedata>
(No newline at EOF)
++++++ rollback-helper-1.0+git20181218.5394d6e.tar.xz ->
rollback-helper-1.0+git20240301.73ac53e.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/rollback-helper-1.0+git20181218.5394d6e/sbin/rollback-reset-registration
new/rollback-helper-1.0+git20240301.73ac53e/sbin/rollback-reset-registration
---
old/rollback-helper-1.0+git20181218.5394d6e/sbin/rollback-reset-registration
2018-12-18 11:59:32.000000000 +0100
+++
new/rollback-helper-1.0+git20240301.73ac53e/sbin/rollback-reset-registration
2024-03-01 10:10:18.000000000 +0100
@@ -18,7 +18,7 @@
# production snapshot (i.e. don't trigger when the user selected some old
# snapshot from GRUB - or at least not until he made it the default one)
if [ "${CURRENT_SNAPSHOT_ID}" -ne "${DEFAULT_SNAPSHOT_ID}" ]; then
- exit
+ exit 0
fi
# systemd does currently not support "Restart=" for oneshot services
@@ -31,3 +31,5 @@
exit 0
fi
done
+# If SUSEConnect never succeeds, quit with an error [bsc#1220680]
+exit 1