pmcf 1.95.0 → 1.95.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/dns.mjs +3 -3
package/package.json
CHANGED
package/src/dns.mjs
CHANGED
|
@@ -378,14 +378,14 @@ async function generateZoneDefs(dns, packageData) {
|
|
|
378
378
|
}
|
|
379
379
|
|
|
380
380
|
for (const service of host.findServices()) {
|
|
381
|
-
for (const domainName of domainNames) {
|
|
381
|
+
//for (const domainName of domainNames) {
|
|
382
382
|
for (const record of service.dnsRecordsForDomainName(
|
|
383
|
-
domainName,
|
|
383
|
+
host.domainName,
|
|
384
384
|
dns.hasSVRRecords
|
|
385
385
|
)) {
|
|
386
386
|
zone.records.add(record);
|
|
387
387
|
}
|
|
388
|
-
}
|
|
388
|
+
//}
|
|
389
389
|
}
|
|
390
390
|
}
|
|
391
391
|
}
|