public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
* [PATCH] pakfire: Re-install previous core update when in testing mode
@ 2020-02-24 18:51 Michael Tremer
  2020-02-24 18:57 ` Peter Müller
  0 siblings, 1 reply; 2+ messages in thread
From: Michael Tremer @ 2020-02-24 18:51 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 1061 bytes --]

From: Arne Fitzenreiter <arne_f(a)ipfire.org>

Fixes: #12302
Signed-off-by: Arne Fitzenreiter <arne_f(a)ipfire.org>
Tested-by: Michael Tremer <michael.tremer(a)ipfire.org>
---
 src/pakfire/lib/functions.pl | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/src/pakfire/lib/functions.pl b/src/pakfire/lib/functions.pl
index ddb1e9aad..45e3427b1 100644
--- a/src/pakfire/lib/functions.pl
+++ b/src/pakfire/lib/functions.pl
@@ -768,6 +768,12 @@ sub upgradecore {
 	getcoredb("noforce");
 	eval(`grep "core_" $Conf::dbdir/lists/core-list.db`);
 	if ("$core_release" > "$Conf::core_mine") {
+		# Safety check for lazy testers:
+		# Before we upgrade to the latest release, we re-install the previous release
+		# to make sure that the tester has always been on the latest version.
+		my $tree = &get_tree();
+		$Conf::core_mine-- if ($tree eq "testing" || $tree eq "unstable");
+
 		message("CORE UPGR: Upgrading from release $Conf::core_mine to $core_release");
 		
 		my @seq = `seq $Conf::core_mine $core_release`;
-- 
2.20.1


^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [PATCH] pakfire: Re-install previous core update when in testing mode
  2020-02-24 18:51 [PATCH] pakfire: Re-install previous core update when in testing mode Michael Tremer
@ 2020-02-24 18:57 ` Peter Müller
  0 siblings, 0 replies; 2+ messages in thread
From: Peter Müller @ 2020-02-24 18:57 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 1161 bytes --]

Reviewed-by: Peter Müller <peter.mueller(a)ipfire.org>

> From: Arne Fitzenreiter <arne_f(a)ipfire.org>
> 
> Fixes: #12302
> Signed-off-by: Arne Fitzenreiter <arne_f(a)ipfire.org>
> Tested-by: Michael Tremer <michael.tremer(a)ipfire.org>
> ---
>  src/pakfire/lib/functions.pl | 6 ++++++
>  1 file changed, 6 insertions(+)
> 
> diff --git a/src/pakfire/lib/functions.pl b/src/pakfire/lib/functions.pl
> index ddb1e9aad..45e3427b1 100644
> --- a/src/pakfire/lib/functions.pl
> +++ b/src/pakfire/lib/functions.pl
> @@ -768,6 +768,12 @@ sub upgradecore {
>  	getcoredb("noforce");
>  	eval(`grep "core_" $Conf::dbdir/lists/core-list.db`);
>  	if ("$core_release" > "$Conf::core_mine") {
> +		# Safety check for lazy testers:
> +		# Before we upgrade to the latest release, we re-install the previous release
> +		# to make sure that the tester has always been on the latest version.
> +		my $tree = &get_tree();
> +		$Conf::core_mine-- if ($tree eq "testing" || $tree eq "unstable");
> +
>  		message("CORE UPGR: Upgrading from release $Conf::core_mine to $core_release");
>  		
>  		my @seq = `seq $Conf::core_mine $core_release`;
> 

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2020-02-24 18:57 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-02-24 18:51 [PATCH] pakfire: Re-install previous core update when in testing mode Michael Tremer
2020-02-24 18:57 ` Peter Müller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox