mirror of
https://github.com/UnnoTed/wireguird
synced 2025-02-05 17:25:30 +00:00
012c8af1a2
deps debian
12 lines
508 B
Bash
Executable File
12 lines
508 B
Bash
Executable File
if [[ -f "/etc/os-release" ]]; then
|
|
source "/etc/os-release"
|
|
if [[ "${ID}" == "fedora" ]]; then
|
|
echo "not supported yet"
|
|
#sudo dnf install wireguard-tools gtk3-devel golang resolvconf
|
|
elif [[ "${ID}" == "ubuntu" ]]; then
|
|
sudo apt install wireguard-tools libgtk-3-dev libayatana-appindicator3-dev golang-go resolvconf
|
|
elif [[ "${ID}" == "debian" ]]; then
|
|
sudo apt install wireguard-tools libgtk-3-dev libayatana-appindicator3-dev golang-go resolvconf
|
|
fi
|
|
fi
|