1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/hotspot_ynh.git synced 2024-09-03 19:25:53 +02:00

check if hotspot is enabled before applying nat rules

This commit is contained in:
HgO 2023-11-18 21:42:48 +01:00
parent 31bf8493bd
commit 689f00983c

View file

@ -17,13 +17,15 @@ set_nat() {
iptables -w -t nat -A POSTROUTING -o "${gateway_interface}" -j MASQUERADE
}
old_gateway_interface=$(ynh_app_setting_get --app=$app --key=gateway_interface)
new_gateway_interface=$(ip route get 1.2.3.4 | awk '{ print $5; }')
if systemctl is-active __SERVICE_NAME__; then
old_gateway_interface=$(yunohost app setting --app=__APP__ --key=gateway_interface)
new_gateway_interface=$(ip route get 1.2.3.4 | awk '{ print $5; }')
if [[ -n "$old_gateway_interface" ]] && [[ "$old_gateway_interface" != "$new_gateway_interface" ]] && is_nat_set "$old_gateway_interface"; then
unset_nat "${old_gateway_interface}"
if [[ -n "$old_gateway_interface" ]] && [[ "$old_gateway_interface" != "$new_gateway_interface" ]] && is_nat_set "$old_gateway_interface"; then
unset_nat "${old_gateway_interface}"
fi
set_nat "${new_gateway_interface}"
ynh_app_setting_set --app=__APP__ --key=gateway_interface --value="${new_gateway_interface}"
fi
set_nat "${new_gateway_interface}"
ynh_app_setting_set --app=$app --key=gateway_interface --value="${new_gateway_interface}"