Merge pull request #25 from Queuecumber/master

Fix DNS Settings
pull/26/head
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
1 changed files with 4 additions and 0 deletions

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);