File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed
Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -459,6 +459,16 @@ downloadLatestReleaseInfo() {
459459# version and decide whether an upgrade is necessary.
460460#
461461downloadAndInstall (){
462+ # Check Ubuntu version for compatibility
463+ if [ -f /etc/os-release ]; then
464+ . /etc/os-release
465+ if [[ " $ID " = " ubuntu" && " $VERSION_ID " = " 24.04" ]]; then
466+ echo -e " ${RED} Ubuntu 24.04 LTS is not currently supported by this installation script.${RESET} "
467+ echo -e " ${YELLOW} Please use an earlier version of Ubuntu for the time being. Check back later for updates.${RESET} "
468+ exit 1
469+ fi
470+ fi
471+
462472 echo " Using temporary directory $TMP_DIR for processing"
463473 downloadLatestReleaseInfo > /dev/null
464474 CURRENT_GLIBC_VERSION=$( ldd --version | grep " ldd" | awk ' {print $NF}' )
You can’t perform that action at this time.
0 commit comments