mirror of
https://github.com/YunoHost-Apps/hotspot_ynh.git
synced 2024-09-03 19:25:53 +02:00
The script miserably crash if the command fails ... better to test the command in the if directly, no need to use $?
This commit is contained in:
parent
74ad064c7f
commit
b909ba3b9b
1 changed files with 1 additions and 2 deletions
|
@ -293,8 +293,7 @@ systemctl reload nginx
|
||||||
|
|
||||||
# Remove IPv6 address set if there is a VPN installed
|
# Remove IPv6 address set if there is a VPN installed
|
||||||
if [[ $ip6_addr != none ]]; then
|
if [[ $ip6_addr != none ]]; then
|
||||||
ip -6 address show dev tun0 2> /dev/null | grep -q "${ip6_addr}/"
|
if ip -6 address show dev tun0 2> /dev/null | grep -q "${ip6_addr}/"; then
|
||||||
if [[ "$?" -eq 0 ]]; then
|
|
||||||
ip address delete "${ip6_addr}/128" dev tun0 &> /dev/null
|
ip address delete "${ip6_addr}/128" dev tun0 &> /dev/null
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in a new issue