mirror of
https://github.com/gravitl/netmaker.git
synced 2025-09-13 08:34:44 +08:00
adding rocky linux support in install script
This commit is contained in:
parent
de9d805e2d
commit
952616db89
1 changed files with 4 additions and 0 deletions
|
@ -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'
|
||||
|
|
Loading…
Add table
Reference in a new issue