Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade chroot, upgrade debootstrap & install kotlin default #2176

Merged
merged 3 commits into from
Oct 20, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions misc-tools/dj_make_chroot.in
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ if [ "$DISTRO" = "Debian" ] && [ -z "$RELEASE" ]; then
echo "Defaulting to '$RELEASE' release for Debian"
fi
if [ "$DISTRO" = "Ubuntu" ] && [ -z "$RELEASE" ]; then
RELEASE="focal"
RELEASE="jammy"
echo "Defaulting to '$RELEASE' release for Ubuntu"
fi

Expand Down Expand Up @@ -178,7 +178,7 @@ if [ "$DISTRO" = 'Debian' ]; then
REMOVEDEBS=""

# Which debootstrap package to install on non-Debian systems:
DEBOOTDEB="debootstrap_1.0.114_all.deb"
DEBOOTDEB="debootstrap_1.0.128+nmu2_all.deb"

# The Debian mirror/proxy below can be passed as environment
# variables; if none are given the following defaults are used.
Expand Down Expand Up @@ -214,8 +214,8 @@ if [ "$DISTRO" = 'Ubuntu' ]; then

# Which debootstrap package to install on non-Ubuntu systems:
# This is only used when the default distro changed from Debian to
# Ubuntu. The version below corresponds to Ubuntu 20.04 Focal.
DEBOOTDEB="debootstrap_1.0.118ubuntu1_all.deb"
# Ubuntu. The version below corresponds to Ubuntu 22.04 Jammy.
DEBOOTDEB="debootstrap_1.0.126+nmu1_all.deb"

# The Debian mirror/proxy below can be passed as environment
# variables; if none are given the following defaults are used.
Expand Down
Loading