diff --git a/roles/openvpn/client/files/fix-routes.sh b/roles/openvpn/client/files/fix-routes.sh index a08e519802..44a9450613 100644 --- a/roles/openvpn/client/files/fix-routes.sh +++ b/roles/openvpn/client/files/fix-routes.sh @@ -8,5 +8,5 @@ then # 2. Add a new route to 192.168.0.0/16 via that IP addres (from xargs on) # 3. Print "Fixed VPN" and exit with code 2 to indicate that it changed # Note: I've been told that the grep and awk can be in one command, and I believe that, but I find this clearer. - (ip route show | grep '192.168.0.0/16') || ((ip route show | grep '192.168.0.' | awk '{print $1}' | xargs ip route add 192.168.0.0/16 via) && echo "Fixed VPN" && exit 2); + (ip route show | grep '192.168.0.0/16') || ((ip route show | grep '192.168.0.' | awk '{print $1}' | xargs ip route add 192.168.0.0/16 via) && echo "Fixed VPN"); fi