Write DNS settings to the file for wg-quick

pull/25/head
Max Ehrlich 2018-11-27 16:36:03 -05:00
parent a52cc4101b
commit 132df13d9f
No known key found for this signature in database
GPG Key ID: 439AC62D3C8A495A
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);