mirror of
https://github.com/YunoHost-Apps/hotspot_ynh.git
synced 2024-09-03 19:25:53 +02:00
Better setting of new_internet_device
This commit is contained in:
parent
042179f771
commit
0a05dfb661
1 changed files with 1 additions and 1 deletions
|
@ -327,7 +327,7 @@ if [ "$1" != restart ]; then
|
||||||
done
|
done
|
||||||
|
|
||||||
old_internet_device=$(ynh_setting_get hotspot internet_device)
|
old_internet_device=$(ynh_setting_get hotspot internet_device)
|
||||||
new_internet_device=$(ip route | awk '/default via/ { print $NF; }')
|
new_internet_device=$(ip --json route | jq -r '.[] | select(.dst == "default") | .dev')
|
||||||
|
|
||||||
# Switch the NAT interface if there is a VPN
|
# Switch the NAT interface if there is a VPN
|
||||||
ip link show dev tun0 &> /dev/null
|
ip link show dev tun0 &> /dev/null
|
||||||
|
|
Loading…
Reference in a new issue