Merge pull request #832 from gravitl/hotfix_v0.11.0_rocky_linux

adding rocky linux support in install script
This commit is contained in:
Alex Feiszli 2022-03-03 14:20:41 -05:00 committed by GitHub
commit fe5402a732
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -25,6 +25,10 @@ elif [ -f /etc/fedora-release ]; then
dependencies="wireguard"
update_cmd='dnf update'
install_cmd='dnf install -y'
elif [ -f /etc/redhat-release ]; then
dependencies="wireguard"
update_cmd='yum update'
install_cmd='yum install -y'
elif [ -f /etc/arch-releae ]; then
dependecies="wireguard-tools"
update_cmd='pacman -Sy'