Unable to locate package pritunl-link

I’m trying to install pritunl-link on Ubuntu 20.04; but it complains that the package cannot be found. Per the documentation (Repositories), I’m using the following repo.

sudo tee /etc/apt/sources.list.d/pritunl.list << EOF
deb https://repo.pritunl.com/stable/apt jammy main
EOF

sudo apt --assume-yes install gnupg
gpg --keyserver hkp://keyserver.ubuntu.com --recv-keys 7568D9BB55FF9E5287D586017AE645C0CF8E292A
gpg --armor --export 7568D9BB55FF9E5287D586017AE645C0CF8E292A | sudo tee /etc/apt/trusted.gpg.d/pritunl.asc
sudo apt update

I get the below error:

vpnlink01:~$ sudo apt-get install pritunl-link
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package pritunl-link

Is the pritunl-link packages not available for Ubuntu 20.04?

Ubuntu Jammy is 22.04, the link client hasn’t been built for 22.04. The pritunl-link package from 20.04 will run on 22.04 but the pritunl-strongswan package which has been built for 22.04 will need to be installed from the 22.04 Pritunl repository. You could first install pritunl-strongswan then switch it to 20.04 install pritunl-link and switch it back to 22.04. The link package will then update from the 22.04 repository when a build is available.

Thanks for the clarification. I’ll used the one from 20.04 for now.