mirror of
https://github.com/angristan/wireguard-install.git
synced 2025-04-05 03:43:30 +03:00
add check for secondary DNS
Added a quick if statement to check for a secondary DNS server. If left with the default or provided with one, uses it. Otherwise, eliminates trailing comma from DNS variable assignment.
This commit is contained in:
parent
2e492d263a
commit
23b9ad0459
1 changed files with 8 additions and 1 deletions
|
@ -39,7 +39,14 @@ function addClient() {
|
|||
echo "[Interface]
|
||||
PrivateKey = $CLIENT_PRIV_KEY
|
||||
Address = $CLIENT_WG_IPV4/24,$CLIENT_WG_IPV6/64
|
||||
DNS = $CLIENT_DNS_1,$CLIENT_DNS_2
|
||||
|
||||
# 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
|
||||
else
|
||||
DNS = $CLIENT_DNS_1
|
||||
fi
|
||||
|
||||
[Peer]
|
||||
PublicKey = $SERVER_PUB_KEY
|
||||
|
|
Loading…
Add table
Reference in a new issue