diff options
Diffstat (limited to '')
-rwxr-xr-x | share/build-scripts/debootstrap | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/share/build-scripts/debootstrap b/share/build-scripts/debootstrap index 696c7b4..27530e7 100755 --- a/share/build-scripts/debootstrap +++ b/share/build-scripts/debootstrap @@ -153,7 +153,7 @@ then fi ARCHITECTURE="${ARCHITECTURE:-$(dpkg --print-architecture)}" -DISTRIBUTION="${DISTRIBUTION:-bookworm}" +DISTRIBUTION="${DISTRIBUTION:-trixie}" MIRROR="${MIRROR:-https://deb.debian.org/debian}" PASSWORD="${PASSWORD:-$(dd if=/dev/urandom bs=12 count=1 2> /dev/null | base64)}" @@ -161,7 +161,7 @@ INCLUDE="dbus" case "${MIRROR}" in https*) - INCLUDE="${INCLUDE},apt-transport-https,ca-certificates" + INCLUDE="${INCLUDE},ca-certificates" ;; esac |