From 9c344e906275c1dd67d51991f5733b89d1d5d3a3 Mon Sep 17 00:00:00 2001 From: ProBackup-nl Date: Wed, 8 Aug 2018 21:21:53 +0200 Subject: [PATCH] Dnsmasq displayed as .conf file format Using dnsmasq as auth. DNS server is more often with a .conf file to load the zones, then by appending all zone file contents as parameters to the executable. Not all users have enough background knowledge to understand that '--dns-rr' is equivalent to 'dns-rr' in the dnsmasq.conf file according to https://serverfault.com/questions/914108/how-to-add-a-caa-record-to-dnsmasq/915012#915012. Therefore show the most often used form: without -- prefix. --- generator.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/generator.js b/generator.js index e20a113..ff884b0 100644 --- a/generator.js +++ b/generator.js @@ -310,10 +310,10 @@ function init_caa_generator (endpoint, form, ca_table, output_zonefile, output_r } function format_dnsmasq_options (domain, records) { // see http://www.thekelleys.org.uk/dnsmasq/docs/dnsmasq-man.html - // --dns-rr=example.com,257,00056973737565636F6D6F646F63612E636F6D + // dns-rr=example.com,257,00056973737565636F6D6F646F63612E636F6D var text = ""; for (var i = 0; i < records.length; ++i) { - text += "--dns-rr=" + strip_trailing_dot(domain) + ",257," + make_hex_string(records[i].encode()) + "\n"; + text += "dns-rr=" + strip_trailing_dot(domain) + ",257," + make_hex_string(records[i].encode()) + "\n"; } return text; }