Correction d'un bug lors de la connexion au VPN

This commit is contained in:
Damien Broqua 2022-04-25 07:50:50 +02:00
parent f4a65f7a1a
commit a3e3f9a524

View File

@ -178,8 +178,9 @@ export NVM_DIR="$HOME/.nvm"
# exec sway
#fi
EXISTS=`ip addr show tun0 > /dev/null && echo $?`
if [ `hostname` = "marty" ] && [ ${EXISTS} = 1 ] ; then
ip addr show tun0 > /dev/null 2>&1
EXISTS=$?
if [ `hostname` = "marty" ] && [ ${EXISTS} -ne 0 ] ; then
echo "Connecting people :|"
nmcli connection up VPN-DarKou --ask
fi