From 22957eddf4ce114fd3973cc2c28d1e94ba186c97 Mon Sep 17 00:00:00 2001 From: Ark74 Date: Sat, 18 Jan 2025 02:13:55 -0600 Subject: [PATCH] quick_jibri_installer.sh: add 24.04 support for Ubuntu and Trisquel. --- quick_jibri_installer.sh | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/quick_jibri_installer.sh b/quick_jibri_installer.sh index f93447e..aa5d8bd 100644 --- a/quick_jibri_installer.sh +++ b/quick_jibri_installer.sh @@ -68,8 +68,9 @@ rename_distro() { fi } #Trisquel distro upstream referencing. -rename_distro nabia focal -rename_distro aramo jammy +rename_distro nabia focal +rename_distro aramo jammy +rename_distro ecne noble install_ifnot() { if [ "$(dpkg-query -W -f='${Status}' "$1" 2>/dev/null | grep -c "ok installed")" == "1" ]; then @@ -189,7 +190,8 @@ fi printf "\nOS: %s" "$(lsb_release -sd)" if [ "$DIST" = "focal" ] || \ - [ "$DIST" = "jammy" ]; then + [ "$DIST" = "jammy" ] || \ + [ "$DIST" = "noble" ]; then printf "\nGood, this is a supported platform!" else printf "\nSorry, this platform is not supported... exiting"