From 9c07454a573ca782e196dc4fa922fa60bc55fa5d Mon Sep 17 00:00:00 2001 From: indyjscientist Date: Sun, 4 Dec 2016 23:46:14 +0000 Subject: [PATCH] Added wget to the list of required packages Added wget to the list of installed packages as some OS installs do not include this by default. Tested on ubuntu 16.04 --- openvpn-install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openvpn-install.sh b/openvpn-install.sh index 7ca4bf2..3d2d4b2 100644 --- a/openvpn-install.sh +++ b/openvpn-install.sh @@ -201,11 +201,11 @@ else read -n1 -r -p "Press any key to continue..." if [[ "$OS" = 'debian' ]]; then apt-get update - apt-get install openvpn iptables openssl ca-certificates -y + apt-get install openvpn iptables openssl ca-certificates wget -y else # Else, the distro is CentOS yum install epel-release -y - yum install openvpn iptables openssl wget ca-certificates -y + yum install openvpn iptables openssl wget ca-certificates wget -y fi # An old version of easy-rsa was available by default in some openvpn packages if [[ -d /etc/openvpn/easy-rsa/ ]]; then