Fix for previous patch for [ip] variable replace
Fix should only apply to A and AAAA record values
This commit is contained in:
parent
a28776f9e2
commit
9ad490671d
1 changed files with 4 additions and 4 deletions
|
@ -281,15 +281,16 @@ namespace WebsitePanel.EnterpriseServer
|
||||||
|
|
||||||
foreach (GlobalDnsRecord record in records)
|
foreach (GlobalDnsRecord record in records)
|
||||||
{
|
{
|
||||||
if (String.IsNullOrEmpty(serviceIP) && String.IsNullOrEmpty(record.ExternalIP))
|
|
||||||
continue;
|
|
||||||
|
|
||||||
DnsRecord rr = new DnsRecord();
|
DnsRecord rr = new DnsRecord();
|
||||||
rr.RecordType = (DnsRecordType)Enum.Parse(typeof(DnsRecordType), record.RecordType, true);
|
rr.RecordType = (DnsRecordType)Enum.Parse(typeof(DnsRecordType), record.RecordType, true);
|
||||||
rr.RecordName = Utils.ReplaceStringVariable(record.RecordName, "host_name", hostName, true);
|
rr.RecordName = Utils.ReplaceStringVariable(record.RecordName, "host_name", hostName, true);
|
||||||
|
|
||||||
if (record.RecordType == "A" || record.RecordType == "AAAA")
|
if (record.RecordType == "A" || record.RecordType == "AAAA")
|
||||||
{
|
{
|
||||||
|
// If the service IP address and the DNS records external address are empty / null SimpleDNS will fail to properly create the zone record
|
||||||
|
if (String.IsNullOrEmpty(serviceIP) && String.IsNullOrEmpty(record.ExternalIP))
|
||||||
|
continue;
|
||||||
|
|
||||||
rr.RecordData = String.IsNullOrEmpty(record.RecordData) ? record.ExternalIP : record.RecordData;
|
rr.RecordData = String.IsNullOrEmpty(record.RecordData) ? record.ExternalIP : record.RecordData;
|
||||||
rr.RecordData = Utils.ReplaceStringVariable(rr.RecordData, "ip", string.IsNullOrEmpty(serviceIP) ? record.ExternalIP : serviceIP);
|
rr.RecordData = Utils.ReplaceStringVariable(rr.RecordData, "ip", string.IsNullOrEmpty(serviceIP) ? record.ExternalIP : serviceIP);
|
||||||
|
|
||||||
|
@ -322,7 +323,6 @@ namespace WebsitePanel.EnterpriseServer
|
||||||
zoneRecords.Add(rr);
|
zoneRecords.Add(rr);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return zoneRecords;
|
return zoneRecords;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue