From 2a029bacf12a0facb5d63fa8e1c678a39768b539 Mon Sep 17 00:00:00 2001 From: Philip Roche Date: Fri, 12 Apr 2024 12:40:20 +0100 Subject: [PATCH] fix: Use Ubuntu policy default channel "latest" for preseeded snaps (LP: #2061121) Recent Mantic cloud image builds fail after default track for LXD change to "5.21" instead of "latest" This changes preseed from "latest/" for all snaps and no longer assume that "latest/" is the default. --- debian/changelog | 7 +++++++ live-build/functions | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 9e66979c..2f5bdf38 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +livecd-rootfs (23.10.59) UNRELEASED; urgency=medium + + * Use Ubuntu policy default channel "latest" for preseeded snaps + (LP: #2061121) + + -- Philip Roche Fri, 12 Apr 2024 12:37:29 +0100 + livecd-rootfs (23.10.58) mantic; urgency=medium [ Simon Poirier ] diff --git a/live-build/functions b/live-build/functions index 6f631b8c..1180e323 100644 --- a/live-build/functions +++ b/live-build/functions @@ -730,7 +730,7 @@ snap_preseed() { CHANNEL=${2#*=} ;; *) - CHANNEL="stable/ubuntu-$(release_ver)" + CHANNEL="latest/stable/ubuntu-$(release_ver)" ;; esac fi