diff --git a/install.sh b/install.sh index a6a220d..31cf338 100755 --- a/install.sh +++ b/install.sh @@ -11,10 +11,11 @@ if [ "${EUID}" -ne 0 ]; then exit fi -# check for Ubuntu 22.04 (jammy) or Debian 12 (bookworm) -os_codename=`lsb_release -cs` -if [ $os_codename != jammy ] && [ $os_codename != bookworm ]; then - echo "This installer only runs on Ubuntu 22.04 (jammy) or Debian 12 (Bookworm), bailing out." +# check for Debian 12 (bookworm) +os_id=`lsb_release -is` +os_release=`lsb_release -rs` +if [ $os_id != Debian ] || [ $os_release != 12 ]; then + echo "This installer only runs on Debian 12 (Bookworm), bailing out." exit 1 fi