mirror of
https://github.com/UnnoTed/wireguird
synced 2024-11-24 10:35:29 +00:00
7508f721d1
- Add settings window - Fix libappindicator3 dependency problem - Add support for multiple tunnels - Add tunnel name length check - Add wireguard error messages
11 lines
256 B
Bash
Executable File
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
|
|
|