Does anyone has nordVPN repo files I can’t get nordVPN installed anymore since script is dnf4 only and they pulled debian and rpm files off from website too
You could modify the script replacing dnf
occurrences with dnf4
.
Or place this function at the beginning of the script.
dnf () {
command dnf4 "$@"
}
Thanks I will try that on non atomic then need to figure how to run scripts on atomic ones since no rpm for now
Anyway, looking at the installer script, the RPMs are located here
https://repo.nordvpn.com/yum/nordvpn/centos/
And on Fedora, the script performs these commands
sudo dnf config-manager --add-repo https://repo.nordvpn.com//yum/nordvpn/centos/x86_64
then
sudo dnf install nordvpn
1 Like
yes i can modify that repo to dnf5 as dnf4 dosent work anymore, but on atomic variants i need to have rpm to enable installation or is there a way to manually do all these
sudo tee /etc/yum.repos.d/nordvpn.repo << "EOF" > /dev/null
[nordvpn]
name=NordVPN
baseurl=https://repo.nordvpn.com/yum/nordvpn/centos/${basearch}/
gpgkey=https://repo.nordvpn.com/gpg/nordvpn_public.asc
gpgcheck=1
EOF
BTW, this package includes the repofile:
Index of /yum/nordvpn/centos/noarch/Packages/n/
1 Like
that works thank you this should be on quick wikis on atomics
1 Like