Litespeed not working on Ubuntu

#1
When i do a fresh install of OpenLiteSpeed it will not install on the latest ubuntu server 20.04 - VERSION="22.04 LTS (Jammy Jellyfish)"
Also when looking at the Repo Jammy isn't there ?
Index of /debian/dists/ (litespeedtech.com)
This is the latest Ubuntu stable release could this be fixed ?

Code:
if [ `echo "$VERSION_ID" | cut -b-2 ` == "14" ]; then
            echo "deb http://rpms.litespeedtech.com/debian/ trusty main" > /etc/apt/sources.list.d/lst_debian_repo.list
            echo "#deb http://rpms.litespeedtech.com/edge/debian/ trusty main" >> /etc/apt/sources.list.d/lst_debian_repo.list
        elif [ `echo "$VERSION_ID" | cut -b-2 ` == "12" ]; then
            echo "deb http://rpms.litespeedtech.com/debian/ precise main" > /etc/apt/sources.list.d/lst_debian_repo.list
            echo "#deb http://rpms.litespeedtech.com/edge/debian/ precise main" >> /etc/apt/sources.list.d/lst_debian_repo.list
        elif [ `echo "$VERSION_ID" | cut -b-2 ` == "16" ]; then
            echo "deb http://rpms.litespeedtech.com/debian/ xenial main" > /etc/apt/sources.list.d/lst_debian_repo.list
            echo "#deb http://rpms.litespeedtech.com/edge/debian/ xenial main" >> /etc/apt/sources.list.d/lst_debian_repo.list
        elif [ `echo "$VERSION_ID" | cut -b-2 ` == "18" ]; then
            echo "deb http://rpms.litespeedtech.com/debian/ bionic main" > /etc/apt/sources.list.d/lst_debian_repo.list
            echo "#deb http://rpms.litespeedtech.com/edge/debian/ bionic main" >> /etc/apt/sources.list.d/lst_debian_repo.list
        elif [ `echo "$VERSION_ID" | cut -b-2 ` == "20" ]; then
            echo "deb http://rpms.litespeedtech.com/debian/ focal main" > /etc/apt/sources.list.d/lst_debian_repo.list
            echo "#deb http://rpms.litespeedtech.com/edge/debian/ focal main" >> /etc/apt/sources.list.d/lst_debian_repo.list
 
Top