From 39bb171c565a895f2260c7dcea34fd8e7679d366 Mon Sep 17 00:00:00 2001 From: David Boreham Date: Thu, 17 Aug 2023 01:27:01 -0600 Subject: [PATCH] Support ChromeOS Debian VM --- scripts/quick-install-linux.sh | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/scripts/quick-install-linux.sh b/scripts/quick-install-linux.sh index 4f4d044b..007102f6 100755 --- a/scripts/quick-install-linux.sh +++ b/scripts/quick-install-linux.sh @@ -30,6 +30,21 @@ fi # Determine if we are on Debian or Ubuntu linux_distro=$(lsb_release -a 2>/dev/null | grep "^Distributor ID:" | cut -f 2) +# Some systems don't have lsb_release installed (e.g. ChromeOS) and so we try to +# use /etc/os-release instead +if [[ -z "$linux_distro" ]]; then + if [[ -f "/etc/os-release" ]]; then + distro_name_string=$(grep "^NAME=" /etc/os-release | cut -d '=' -f 2) + if [[ $distro_name_string =~ Debian ]]; then + linux_distro="Debian" + elif [[ $distro_name_string =~ Ubuntu ]]; then + linux_distro="Ubuntu" + fi + else + echo "Failed to identify distro: /etc/os-release doesn't exist" + exit 1 + fi +fi case $linux_distro in Debian) echo "Installing docker for Debian" -- 2.45.2