OneClick Install: Unable To Locate Package OpenLiteSpeed

#1
Hey folks:

This just started happening recently with the oneclick installer. Attempting to run it on Ubuntu 20.04 and 22.04 throws an error:

E: Unable to locate package openlitespeed

Of course, after that, you get a bunch of other errors.

The oneclick installer has worked for us for a long time now so not sure why this is occurring.

Tested and verified at multiple cloud server providers.

Ideas appreciated!

Thanks so much.
 

Cold-Egg

Administrator
#5
Hi, I can't reproduce it, could you run the following and share the output?
Code:
sudo wget -O - https://repo.litespeed.sh | sudo bash -x
 
#6
hello. I fixed the problem by using Code:
sudo wget -q -O - https://repo.litespeed.sh | sudo bash >/dev/null 2>&1

After doing that fix running Code:
sudo wget -O - https://repo.litespeed.sh | sudo bash -x

Redirecting output to ‘wget-log.1’.
+ main
+ detect_os
+ '[' -f /etc/os-release ']'
++ cat /etc/os-release
++ grep '^ID='
++ head -n1
++ awk -F = '{print $2}'
++ tr -d '"'
+ REPO_OS=ubuntu
++ cat /etc/os-release
++ grep '^VERSION_ID='
++ head -n1
++ awk -F = '{print $2}'
++ tr -d '"'
+ REPO_VER=24.04
+ '[' ubuntu = debian ']'
+ '[' ubuntu = ubuntu ']'
++ cat /etc/os-release
++ grep '^VERSION_CODENAME='
++ head -n1
++ awk -F = '{print $2}'
++ tr -d '"'
+ REPO_OS_CODENAME=noble
+ '[' ubuntu = centos ']'
+ '[' ubuntu = rhel ']'
+ '[' ubuntu = rocky ']'
+ '[' ubuntu = almalinux ']'
+ '[' ubuntu = oracle ']'
+ '[' ubuntu = redhat ']'
+ '[' ubuntu = virtuozzo ']'
+ '[' ubuntu = cloudlinux ']'
+ '[' ubuntu = debian ']'
+ '[' ubuntu = ubuntu ']'
+ REPO_BASE_OS=debian
++ uname -m
+ REPO_ARCH=x86_64
+ '[' x86_64 '!=' x86_64 ']'
+ '[' '' = clean ']'
+ install_repo
+ '[' debian = centos ']'
+ '[' debian = debian ']'
+ setup_debian
+ curl -s -o /etc/apt/trusted.gpg.d/lst_debian_repo.gpg http://rpms.litespeedtech.com/debian/lst_debian_repo.gpg
+ curl -s -o /etc/apt/trusted.gpg.d/lst_repo.gpg http://rpms.litespeedtech.com/debian/lst_repo.gpg
+ echo 'deb http://rpms.litespeedtech.com/debian/ noble main'
+ echo '#deb http://rpms.litespeedtech.com/edge/debian/ noble main'
+ sleep 2
+ DEBIAN_FRONTEND=noninteractive
+ apt-get update -qq
+ echo 'LiteSpeed repository has been setup!'
LiteSpeed repository has been setup!
+ install_php_repo
+ '[' debian = centos ']'
+ exit 0

Does that help?
 
Top