We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c4fd34 commit b5e21feCopy full SHA for b5e21fe
openvpn-install.sh
@@ -760,7 +760,7 @@ function installOpenVPN() {
760
# Install the latest version of easy-rsa from source, if not already installed.
761
if [[ ! -d /etc/openvpn/easy-rsa/ ]]; then
762
wget -O ~/easy-rsa.tgz "https://github.com/OpenVPN/easy-rsa/releases/download/v${EASYRSA_VERSION}/EasyRSA-${EASYRSA_VERSION}.tgz"
763
- if ! echo "${EASYRSA_SHA256} ~/easy-rsa.tgz" | sha256sum -c; then
+ if ! echo "${EASYRSA_SHA256} $HOME/easy-rsa.tgz" | sha256sum -c; then
764
echo "SHA256 checksum verification failed for easy-rsa download!"
765
rm -f ~/easy-rsa.tgz
766
exit 1
0 commit comments