1
0
mirror of https://github.com/max-moser/network-manager-wireguard.git synced 2025-02-20 06:46:21 +03:00

Merge pull request #25 from Queuecumber/master

Fix DNS Settings
This commit is contained in:
Max 2018-11-27 23:45:35 +01:00 committed by GitHub
commit 48618efe36
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1242,6 +1242,10 @@ create_config_string (NMConnection *connection, GError **error)
args_write_line(f, NMV_WG_TAG_POST_DOWN, "=", post_down);
}
if (dns){
args_write_line(f, NMV_WG_TAG_DNS, "=", dns);
}
args_write_line(f, NMV_WG_TAG_PEER);
args_write_line(f, NMV_WG_TAG_PUBLIC_KEY, "=", public_key);
args_write_line(f, NMV_WG_TAG_ENDPOINT, "=", endpoint);