mirror of
https://github.com/pivpn/pivpn.git
synced 2024-12-19 11:20:15 +00:00
fixed easyrsa install
wget command does not work and throws an error. "/tmp/EasyRSA-3.0.1-pivpn1/: Is a directory" This is because the the output of wget is a directory, not a file. -O expects a file. BN also, mv throws an error: "mv: cannot move `/tmp/EasyRSA-3.0.1-pivpn1' to `/etc/openvpn/easy-rsa': No such file or directory" We can do a mkdir & wget & tar and move to do it in lesser steps, although less readable there are is no need for /tmp
This commit is contained in:
parent
b632e69cdf
commit
939cd55694
1 changed files with 2 additions and 7 deletions
|
@ -707,14 +707,9 @@ confOpenVPN() {
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Get the PiVPN easy-rsa
|
# Get the PiVPN easy-rsa
|
||||||
# BN. wget command does not work and throws an error. "/tmp/EasyRSA-3.0.1-pivpn1/: Is a directory"
|
$SUDO mkdir -p /etc/openvpn/easy-rsa/pki && wget -q -O - "${easyrsaRel}" | $SUDO tar xz -C /etc/openvpn/easy-rsa
|
||||||
# wget -q -O "/tmp/EasyRSA-${easyrsaVer}" "${easyrsaRel}"
|
# fix ownership
|
||||||
# tar xzf /tmp/EasyRSA-${easyrsaVer} -C /tmp
|
|
||||||
wget -q -O "/tmp/EasyRSA-${easyrsaVer}.tgz" "${easyrsaRel}"
|
|
||||||
tar xzf /tmp/EasyRSA-${easyrsaVer}.tgz -C /tmp
|
|
||||||
$SUDO mv /tmp/EasyRSA-${easyrsaVer}/ /etc/openvpn/easy-rsa/
|
|
||||||
$SUDO chown -R root:root /etc/openvpn/easy-rsa
|
$SUDO chown -R root:root /etc/openvpn/easy-rsa
|
||||||
$SUDO mkdir /etc/openvpn/easy-rsa/pki
|
|
||||||
|
|
||||||
# Write out new vars file
|
# Write out new vars file
|
||||||
IFS= read -d '' String <<"EOF"
|
IFS= read -d '' String <<"EOF"
|
||||||
|
|
Loading…
Reference in a new issue