From d5e8a69426574facb6ecd6dadee8aba1e66a4620 Mon Sep 17 00:00:00 2001 From: Angristan Date: Sat, 16 Sep 2017 20:59:31 +0200 Subject: [PATCH] Fix tls-crypt --- openvpn-install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openvpn-install.sh b/openvpn-install.sh index f6e14d7..924685d 100644 --- a/openvpn-install.sh +++ b/openvpn-install.sh @@ -640,7 +640,7 @@ ca ca.crt cert server.crt key server.key" >> /etc/openvpn/server.conf if [[ $TLS_SIG == "1" ]]; then - echo "tls-auth tls-crypt.key 0" >> /etc/openvpn/server.conf + echo "tls-crypt tls-crypt.key 0" >> /etc/openvpn/server.conf elif [[ $TLS_SIG == "2" ]]; then echo "tls-auth tls-auth.key 0" >> /etc/openvpn/server.conf fi