- Update to version 1.1.0~git2.f42b4b2a060e:
* Keep keepalive timer states when replacing SUSEConnect (bsc#1211588) OBS-URL: https://build.opensuse.org/package/show/systemsmanagement:SCC/suseconnect-ng?expand=0&rev=57
This commit is contained in:
parent
080bfa185b
commit
85d19ea593
@ -1,4 +1,4 @@
|
||||
<servicedata>
|
||||
<service name="tar_scm">
|
||||
<param name="url">https://github.com/SUSE/connect-ng.git</param>
|
||||
<param name="changesrevision">472bdddd7894f8ddbf002143d472b5052a84d633</param></service></servicedata>
|
||||
<param name="changesrevision">f42b4b2a060e4235acf8f6b9e236abd12f088b98</param></service></servicedata>
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:22eeb2ba64f8849ae967054cc6ce33686ca49d27bc57cf0850d28d809d2fcde3
|
||||
size 78948
|
3
connect-ng-1.1.0~git2.f42b4b2a060e.tar.xz
Normal file
3
connect-ng-1.1.0~git2.f42b4b2a060e.tar.xz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:591eba0faf9740008af0076aabe8e634d671564ad4e50dd0bbe8e4b69a521150
|
||||
size 79172
|
@ -1,3 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Jun 07 06:11:07 UTC 2023 - msabate@suse.com
|
||||
|
||||
- Update to version 1.1.0~git2.f42b4b2a060e:
|
||||
* Keep keepalive timer states when replacing SUSEConnect (bsc#1211588)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Mar 17 10:34:15 UTC 2023 - msabate@suse.com
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
||||
%bcond_with hwinfo
|
||||
|
||||
Name: suseconnect-ng
|
||||
Version: 1.1.0~git0.e3c41e60892e
|
||||
Version: 1.1.0~git2.f42b4b2a060e
|
||||
Release: 0
|
||||
URL: https://github.com/SUSE/connect-ng
|
||||
Summary: Utility to register a system with the SUSE Customer Center
|
||||
@ -187,6 +187,13 @@ about these improvements and any ideas you might have.
|
||||
EOF
|
||||
fi
|
||||
|
||||
# If the keepalive timer exists on package install (not upgrade), then we are replacing SUSEConnect.
|
||||
# Record the enabled and active statuses so they can be restored in %posttrans.
|
||||
if [ "$1" -eq 1 ]; then
|
||||
/usr/bin/systemctl is-enabled suseconnect-keepalive.timer >/dev/null 2>&1 && touch /run/suseconnect-keepalive.timer.is-enabled || :
|
||||
/usr/bin/systemctl is-active suseconnect-keepalive.timer >/dev/null 2>&1 && touch /run/suseconnect-keepalive.timer.is-active || :
|
||||
fi
|
||||
|
||||
%post
|
||||
%service_add_post suseconnect-keepalive.service suseconnect-keepalive.timer
|
||||
|
||||
@ -196,6 +203,16 @@ fi
|
||||
%postun
|
||||
%service_del_postun suseconnect-keepalive.service suseconnect-keepalive.timer
|
||||
|
||||
%posttrans
|
||||
if [ -e /run/suseconnect-keepalive.timer.is-enabled ]; then
|
||||
/usr/bin/systemctl enable suseconnect-keepalive.timer >/dev/null 2>&1 || :
|
||||
rm /run/suseconnect-keepalive.timer.is-enabled ||:
|
||||
fi
|
||||
if [ -e /run/suseconnect-keepalive.timer.is-active ]; then
|
||||
/usr/bin/systemctl start suseconnect-keepalive.timer >/dev/null 2>&1 || :
|
||||
rm /run/suseconnect-keepalive.timer.is-active ||:
|
||||
fi
|
||||
|
||||
%check
|
||||
%gotest -v %import_path/internal/connect %{?test_hwinfo_args}
|
||||
%gotest -v %import_path/suseconnect
|
||||
|
Loading…
Reference in New Issue
Block a user