Install sudo on Debian 12

Debian 12 does not include sudo by default. Adding its installation early
in the bootstrap process to avoid errors during setup_hosts configuration.

Change-Id: I73bd2c9a485907e002c0132d20ac5e81c5cefd32
This commit is contained in:
Dmitriy Chubinidze
2025-06-22 18:28:53 +00:00
parent 090ec05236
commit 85e617de12

View File

@@ -94,7 +94,7 @@ case ${DISTRO_ID} in
DEBIAN_FRONTEND=noninteractive apt-get -y install \
python3 python3-dev \
python3-minimal python3-apt \
python3-venv\
python3-venv
;;
esac
@@ -113,7 +113,7 @@ case ${DISTRO_ID} in
git-core curl gcc \
libssl-dev libffi-dev \
libsystemd-dev pkg-config \
wget
wget sudo
;;
esac