workbench deploy: detect ubuntu and guide user

This commit is contained in:
pedro 2024-09-19 13:06:25 -03:00
parent b005a5e158
commit 3688088958
1 changed files with 5 additions and 0 deletions

View File

@ -390,6 +390,11 @@ prepare_chroot_env() {
if [ -z "${VERSION_CODENAME:-}" ]; then if [ -z "${VERSION_CODENAME:-}" ]; then
. /etc/os-release . /etc/os-release
echo "TAKING OS-RELEASE FILE" echo "TAKING OS-RELEASE FILE"
if [ "${ID}" = "debian" ]; then
echo "ERROR: ubuntu detected, then you are enforced to specify debian variant"
echo " use for example \`VERSION_CODENAME='bookworm'\` or similar"
exit 1
fi
fi fi
chroot_path="${ISO_PATH}/chroot" chroot_path="${ISO_PATH}/chroot"