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"