From 74f6bdfe42b82f4631b22ac8f9991bbb544db750 Mon Sep 17 00:00:00 2001 From: jkcoxson Date: Sat, 25 Jan 2020 22:47:10 -0700 Subject: [PATCH] Fix easy-rsa error Error from https://github.com/OpenVPN/easy-rsa/issues/261 Added lines to circumvent the issue of not being able to create certificates correctly. --- openvpn-install.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/openvpn-install.sh b/openvpn-install.sh index 39a9f42..116d26a 100644 --- a/openvpn-install.sh +++ b/openvpn-install.sh @@ -304,7 +304,9 @@ LimitNPROC=infinity" > /etc/systemd/system/openvpn-server@server.service.d/disab rm -f ~/easyrsa.tgz cd /etc/openvpn/server/easy-rsa/ # Create the PKI, set up the CA and the server and client certificates + dd if=/dev/urandom of=/etc/openvpn/server/easy-rsa/pki/.rnd bs=256 count=1 ./easyrsa init-pki + dd if=/dev/urandom of=/etc/openvpn/server/easy-rsa/pki/.rnd bs=256 count=1 ./easyrsa --batch build-ca nopass EASYRSA_CERT_EXPIRE=3650 ./easyrsa build-server-full server nopass EASYRSA_CERT_EXPIRE=3650 ./easyrsa build-client-full "$client" nopass