diff options
Diffstat (limited to 'hooks/build-os/10-apt')
| -rwxr-xr-x | hooks/build-os/10-apt | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/hooks/build-os/10-apt b/hooks/build-os/10-apt index 65c7056..be2059b 100755 --- a/hooks/build-os/10-apt +++ b/hooks/build-os/10-apt @@ -3,13 +3,11 @@ set -o pipefail # Enable additional sources cat > "${root:?}"/etc/apt/sources.list << EOF -deb https://deb.debian.org/debian trixie main contrib non-free non-free-firmware - -deb https://deb.debian.org/debian trixie-updates main contrib non-free non-free-firmware - -deb https://security.debian.org/debian-security trixie-security main contrib non-free non-free-firmware +deb http://deb.debian.org/debian trixie main contrib non-free non-free-firmware +deb http://deb.debian.org/debian trixie-updates main contrib non-free non-free-firmware +deb http://security.debian.org/debian-security trixie-security main contrib non-free non-free-firmware EOF # update/upgrade system chroot "${root:?}" apt-get update -chroot "${root:?}" apt-get upgrade +chroot "${root:?}" apt-get upgrade --assume-yes |
