Skip to content

Commit

Permalink
drop ptr support
Browse files Browse the repository at this point in the history
  • Loading branch information
SX-9 authored Nov 9, 2024
1 parent 7da7f40 commit ad0ed2c
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions dnsconfig.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,14 +89,14 @@ for (var idx in domains) {
// }
// }

if ('SRV' in domainData.record) {
for (var srv in domainData.record.SRV) {
var srvRecord = domainData.record.SRV[srv];
commits.push(
SRV(subdomain, srvRecord.priority, srvRecord.weight, srvRecord.port, srvRecord.target + ".")
);
}
}
// if ('SRV' in domainData.record) {
// for (var srv in domainData.record.SRV) {
// var srvRecord = domainData.record.SRV[srv];
// commits.push(
// SRV(subdomain, srvRecord.priority, srvRecord.weight, srvRecord.port, srvRecord.target + ".")
// );
// }
// }

// if ('PTR' in domainData.record) {
// for (var ptr in domainData.record.PTR) {
Expand Down

0 comments on commit ad0ed2c

Please sign in to comment.