You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Wireguard manager should check if the UFW is used. If so, a prompt should come asking if a route should be set up for the wg0 interface. Because otherwise the access does not work.
#!/bin/bash
function ufw-check() {
is_service_exists() {
local x=$1
if systemctl status "${x}" 2> /dev/null | grep -Fq "Active:"; then
return 0
else
return 1
fi
}
if is_service_exists 'ufw.service'; then ...
}
The text was updated successfully, but these errors were encountered:
Wireguard manager should check if the UFW is used. If so, a prompt should come asking if a route should be set up for the wg0 interface. Because otherwise the access does not work.
The text was updated successfully, but these errors were encountered: