mirror of
https://github.com/angristan/wireguard-install.git
synced 2025-04-05 03:43:30 +03:00
fix for if-statement in the middle of echo
This commit is contained in:
parent
613cc12223
commit
c34f7fb35e
1 changed files with 4 additions and 4 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue