remove x86_32

remove freebsd daemon as --deamon on is now valid for freebsd
updated openWRT daemon to use new paths and arguments
add support for arch installs
This commit is contained in:
Matthew R. Kasun 2022-02-10 10:13:54 -05:00
parent 09f8114cc0
commit abd1ad60dd

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/arch-releae ]; then
dependecies="wireguard-tools"
update_cmd='pacman -Sy'
install_cmd='pacman -S --noconfirm'
elif [ "${OS}" = "FreeBSD" ]; then
dependencies="wireguard"
update_cmd='pkg update'