From 31d42bfd2ff86d175f389ee5bbed6f275597c185 Mon Sep 17 00:00:00 2001 From: Brian Murray Date: Mon, 26 Sep 2022 15:55:19 -0700 Subject: [PATCH] Disable the snap-preseed calls in the interest of getting images built for the 22.10 beta. (LP: #1990884) --- debian/changelog | 7 +++++++ live-build/functions | 5 +++-- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index 60798228..273bc7a1 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +livecd-rootfs (2.785) UNRELEASED; urgency=medium + + * Disable the snap-preseed calls in the interest of getting images built for + the 22.10 beta. (LP: #1990884) + + -- Brian Murray Mon, 26 Sep 2022 15:53:21 -0700 + livecd-rootfs (2.784) kinetic; urgency=medium * Don't set a desktop base seed for ubuntu-base or ubuntu-core. diff --git a/live-build/functions b/live-build/functions index a6fa5bf2..3de98575 100644 --- a/live-build/functions +++ b/live-build/functions @@ -762,8 +762,9 @@ snap_validate_seed() { if [ -e "${CHROOT_ROOT}/var/lib/snapd/seed/seed.yaml" ]; then snap debug validate-seed "${CHROOT_ROOT}/var/lib/snapd/seed/seed.yaml" - /usr/lib/snapd/snap-preseed --reset $(realpath "${CHROOT_ROOT}") - /usr/lib/snapd/snap-preseed $(realpath "${CHROOT_ROOT}") + # 2022-09-26 snap-preseed is hanging with the latest firefox snap LP: #1990884 + # /usr/lib/snapd/snap-preseed --reset $(realpath "${CHROOT_ROOT}") + # /usr/lib/snapd/snap-preseed $(realpath "${CHROOT_ROOT}") chroot "${CHROOT_ROOT}" apparmor_parser --skip-read-cache --write-cache --skip-kernel-load --verbose -j `nproc` /etc/apparmor.d fi }