From 81a731eb5d8600d5de834b059d4db90e1dfdd088 Mon Sep 17 00:00:00 2001 From: hwdsl2 Date: Wed, 11 May 2016 16:36:07 -0500 Subject: [PATCH] Set PATH to avoid issues on some systems Reference: #19 --- extras/vpnupgrade_Libreswan.sh | 2 ++ extras/vpnupgrade_Libreswan_centos.sh | 2 ++ vpnsetup.sh | 2 ++ vpnsetup_centos.sh | 2 ++ 4 files changed, 8 insertions(+) diff --git a/extras/vpnupgrade_Libreswan.sh b/extras/vpnupgrade_Libreswan.sh index 2adc40c..02f1529 100644 --- a/extras/vpnupgrade_Libreswan.sh +++ b/extras/vpnupgrade_Libreswan.sh @@ -15,6 +15,8 @@ SWAN_VER=3.17 ### Do not edit below this line +export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" + os_type="$(lsb_release -si 2>/dev/null)" if [ "$os_type" != "Ubuntu" ] && [ "$os_type" != "Debian" ]; then echo "This script only supports Ubuntu or Debian systems." diff --git a/extras/vpnupgrade_Libreswan_centos.sh b/extras/vpnupgrade_Libreswan_centos.sh index e69b25b..a8af79d 100644 --- a/extras/vpnupgrade_Libreswan_centos.sh +++ b/extras/vpnupgrade_Libreswan_centos.sh @@ -15,6 +15,8 @@ SWAN_VER=3.17 ### Do not edit below this line +export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" + if [ ! -f /etc/redhat-release ]; then echo "This script only supports CentOS or RHEL systems." exit 1 diff --git a/vpnsetup.sh b/vpnsetup.sh index b27feb0..b9f53b6 100644 --- a/vpnsetup.sh +++ b/vpnsetup.sh @@ -30,6 +30,8 @@ VPN_PASSWORD='your_very_secure_password' # ------------------------------------------------------------ +export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" + if [ "$(uname)" = "Darwin" ]; then echo 'DO NOT run this script on your Mac! It should only be used on a server.' exit 1 diff --git a/vpnsetup_centos.sh b/vpnsetup_centos.sh index be1beaf..d0c9eb2 100644 --- a/vpnsetup_centos.sh +++ b/vpnsetup_centos.sh @@ -30,6 +30,8 @@ VPN_PASSWORD='your_very_secure_password' # ------------------------------------------------------------ +export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" + if [ "$(uname)" = "Darwin" ]; then echo 'DO NOT run this script on your Mac! It should only be used on a server.' exit 1