mirror of
https://github.com/UnnoTed/wireguird
synced 2025-02-05 17:25:30 +00:00
Update deps.sh - separates debian 11 and 12 in the if since they have different dependencies
This commit is contained in:
parent
6dac3cd878
commit
a632c12bfb
4
deps.sh
4
deps.sh
@ -5,7 +5,9 @@ if [[ -f "/etc/os-release" ]]; then
|
|||||||
#sudo dnf install wireguard-tools gtk3-devel golang resolvconf
|
#sudo dnf install wireguard-tools gtk3-devel golang resolvconf
|
||||||
elif [[ "${ID}" == "ubuntu" ]]; then
|
elif [[ "${ID}" == "ubuntu" ]]; then
|
||||||
sudo apt install wireguard-tools libgtk-3-dev libayatana-appindicator3-dev golang-go resolvconf
|
sudo apt install wireguard-tools libgtk-3-dev libayatana-appindicator3-dev golang-go resolvconf
|
||||||
elif [[ "${ID}" == "debian" ]]; then
|
elif [[ "${ID}" == "debian" && "${VERSION_CODENAME}" == "bookworm" ]]; then
|
||||||
|
sudo apt install wireguard-tools libgtk-3-dev libayatana-appindicator3-dev golang-go resolvconf
|
||||||
|
elif [[ "${ID}" == "debian" && "${VERSION_CODENAME}" == "bullseye" ]]; then
|
||||||
sudo apt install wireguard-tools libgtk-3-dev libayatana-appindicator3-dev golang-go resolvconf
|
sudo apt install wireguard-tools libgtk-3-dev libayatana-appindicator3-dev golang-go resolvconf
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
Loading…
Reference in New Issue
Block a user