all repos — dns @ 1e3a2f1a8e29d7ee44c159a28b20c4ecf391d018

DNS records for my domains, managed via dnscontrol

reformat

Alan Pearce
commit

1e3a2f1a8e29d7ee44c159a28b20c4ecf391d018

parent

32303d24d7e99ed4dcbe3fb41886b6040bc48269

1 file changed, 2 insertions(+), 2 deletions(-)

changed files
M dnsconfig.jsdnsconfig.js
@@ -13,7 +13,7 @@ * @param {string[]} [record.ipv6hint]
*/ function https(record) { return Object.keys(record) - .map(function (key) { + .map(function(key) { return [key, record[key].join(',')].join('=') }) .join(' ')
@@ -57,7 +57,7 @@ * @param {string[]} sources
* @param {string} target */ function bulkCNAME(sources, target) { - return sources.map(function (source) { + return sources.map(function(source) { return CNAME(source, target) }) }