all repos — dns @ db3ea410ce0f8394617fbba0c8a45bb62c0a92dc

DNS records for my domains, managed via dnscontrol

re-format

Alan Pearce
commit

db3ea410ce0f8394617fbba0c8a45bb62c0a92dc

parent

6ee0d1bdb980598df13f50a2b61b0ace89adefa9

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