Merge pull request #31 from nuimk/master

Return correct exit status in ovpn_getclient script
This commit is contained in:
Kyle Manna 2015-02-23 16:52:38 -08:00
commit 42d95bd77a

View File

@ -44,4 +44,6 @@ if [ "$OVPN_DEFROUTE" != "0" ];then
echo "redirect-gateway def1"
fi
[ -n "$OVPN_MTU" ] && echo "tun-mtu $OVPN_MTU"
if [ -n "$OVPN_MTU" ]; then
echo "tun-mtu $OVPN_MTU"
fi