From 50866e80d36c0ac55f853be9a4597d1346f7fb8e Mon Sep 17 00:00:00 2001 From: wheezy Date: Sat, 8 Jan 2022 01:34:44 +0300 Subject: [PATCH] remove nopass --- openvpn-install.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/openvpn-install.sh b/openvpn-install.sh index b39e795..7cb62ea 100644 --- a/openvpn-install.sh +++ b/openvpn-install.sh @@ -243,9 +243,9 @@ LimitNPROC=infinity" > /etc/systemd/system/openvpn-server@server.service.d/disab cd /etc/openvpn/server/easy-rsa/ # Create the PKI, set up the CA and the server and client certificates ./easyrsa init-pki - ./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 + ./easyrsa --batch build-ca + EASYRSA_CERT_EXPIRE=3650 ./easyrsa build-server-full server + EASYRSA_CERT_EXPIRE=3650 ./easyrsa build-client-full "$client" EASYRSA_CRL_DAYS=3650 ./easyrsa gen-crl # Move the stuff we need cp pki/ca.crt pki/private/ca.key pki/issued/server.crt pki/private/server.key pki/crl.pem /etc/openvpn/server @@ -461,7 +461,7 @@ else client=$(sed 's/[^0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ_-]/_/g' <<< "$unsanitized_client") done cd /etc/openvpn/server/easy-rsa/ - EASYRSA_CERT_EXPIRE=3650 ./easyrsa build-client-full "$client" nopass + EASYRSA_CERT_EXPIRE=3650 ./easyrsa build-client-full "$client" # Generates the custom client.ovpn new_client echo