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