From 8f490949f557456cdc5ccfe51e97aeea7ba7cccd Mon Sep 17 00:00:00 2001 From: A Holt Date: Sun, 29 Apr 2018 02:24:41 -0400 Subject: [PATCH] Update iiab-remote-on --- roles/openvpn/templates/iiab-remote-on | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/roles/openvpn/templates/iiab-remote-on b/roles/openvpn/templates/iiab-remote-on index 5f40903da..ae8110732 100644 --- a/roles/openvpn/templates/iiab-remote-on +++ b/roles/openvpn/templates/iiab-remote-on @@ -4,8 +4,8 @@ # do nothing if it is not installed which openvpn if [ $? -ne 0 ]; then - echo Cannot find the openvpn program. - exit 1 + echo Cannot find the openvpn program. + exit 1 fi systemctl enable openvpn@xscenet.service systemctl start openvpn@xscenet.service @@ -13,7 +13,7 @@ systemctl start openvpn@xscenet.service sleep 5 ping -c 2 10.8.0.1 if [ $? -eq 0 ]; then - echo Openvpn successfully started. + echo Openvpn successfully started. else - echo Openvpn failed to contact remote server. + echo Openvpn failed to contact remote server. fi