mirror of
https://github.com/UnnoTed/wireguird
synced 2025-02-05 17:25:30 +00:00
- Add settings window - Fix libappindicator3 dependency problem - Add support for multiple tunnels - Add tunnel name length check - Add wireguard error messages
12 lines
294 B
Bash
Executable File
12 lines
294 B
Bash
Executable File
if [[ -f "/etc/os-release" ]]; then
|
|
source "/etc/os-release"
|
|
if [[ "${ID}" == "fedora" ]]; then
|
|
echo "not supported yet"
|
|
#echo "rpm package"
|
|
#./package_rpm.sh
|
|
elif [[ "${ID}" == "ubuntu" ]]; then
|
|
echo "deb package"
|
|
./package_deb.sh
|
|
fi
|
|
fi
|