wireguird/install.sh
UnnoTed 7508f721d1 v1
- Add settings window
- Fix libappindicator3 dependency problem
- Add support for multiple tunnels
- Add tunnel name length check
- Add wireguard error messages
2023-03-30 04:26:00 +02:00

11 lines
256 B
Bash
Executable File

if [[ -f "/etc/os-release" ]]; then
source "/etc/os-release"
if [[ "${ID}" == "fedora" ]]; then
echo "not supported yet"
#sudo rpm
elif [[ "${ID}" == "ubuntu" ]]; then
sudo dpkg -i ./build/wireguird_amd64.deb
fi
fi