From c34f7fb35e5c23676ded12c9cbde405872c4307a Mon Sep 17 00:00:00 2001 From: Chris Lewicki Date: Thu, 21 May 2020 20:41:16 -0400 Subject: [PATCH] fix for if-statement in the middle of echo --- wireguard-install.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/wireguard-install.sh b/wireguard-install.sh index aeb616c..f515ec8 100644 --- a/wireguard-install.sh +++ b/wireguard-install.sh @@ -38,17 +38,17 @@ function addClient() { # Create client file and add the server as a peer echo "[Interface] PrivateKey = $CLIENT_PRIV_KEY -Address = $CLIENT_WG_IPV4/24,$CLIENT_WG_IPV6/64 +Address = $CLIENT_WG_IPV4/24,$CLIENT_WG_IPV6/64" # Fix for bug where trailing comma is left if no secondary DNS specified if [ -z '$CLIENT_DNS_2' ] then - DNS = $CLIENT_DNS_1,$CLIENT_DNS_2 + echo "DNS = $CLIENT_DNS_1,$CLIENT_DNS_2" else - DNS = $CLIENT_DNS_1 + echo "DNS = $CLIENT_DNS_1" fi -[Peer] +echo "[Peer] PublicKey = $SERVER_PUB_KEY PresharedKey = $CLIENT_PRE_SHARED_KEY Endpoint = $ENDPOINT