From 289f693c203b19e388b160520fc599abb4fa1ef7 Mon Sep 17 00:00:00 2001 From: Ward from fusion-voyager-3 Date: Thu, 1 Aug 2024 16:46:30 +0300 Subject: [PATCH] attempt 5 at fixing booster --- .github/push-iso | 2 +- chroot_scripts/0-chroot.sh | 17 +++++++++++------ 2 files changed, 12 insertions(+), 7 deletions(-) diff --git a/.github/push-iso b/.github/push-iso index 8351c19..60d3b2f 100644 --- a/.github/push-iso +++ b/.github/push-iso @@ -1 +1 @@ -14 +15 diff --git a/chroot_scripts/0-chroot.sh b/chroot_scripts/0-chroot.sh index f7001c3..b94bea8 100755 --- a/chroot_scripts/0-chroot.sh +++ b/chroot_scripts/0-chroot.sh @@ -4,12 +4,6 @@ set -e export DEBIAN_FRONTEND="noninteractive" -# Update APT Caches - -apt-get update -y -apt-get remove booster -y || true -apt-get install pika-sources booster-temp booster-placeholder -y - # Add canary repo tee /etc/apt/sources.list.d/canary.sources <<'EOF' @@ -22,6 +16,17 @@ Components: canary Signed-By: /etc/apt/keyrings/pika-keyring.gpg.key EOF +# Update APT Caches + +apt-get update -y +apt-get install pika-sources -y + +# Actions to do before package lists +sudo apt install initramfs-tools adwaita-icon-theme humanity-icon-theme amdgpu-drm --yes --option Acquire::Retries=5 +sudo apt install desktop-file-utils --yes --option Acquire::Retries=5 +sudo apt install kernel-pika --yes --option Acquire::Retries=5 +sudo apt install booster-placeholder --yes --option Acquire::Retries=5 + # Upgrade system with new cache apt-get full-upgrade --yes --option Dpkg::Options::="--force-confnew"