Merge pull request #1344 from rezwanahmedsami/v2.3.7
bug: fixed pydns version
This commit is contained in:
commit
d32e41d3a9
|
|
@ -522,7 +522,7 @@ class cPanelImporter:
|
||||||
SOACheck = 1
|
SOACheck = 1
|
||||||
continue
|
continue
|
||||||
|
|
||||||
if SOACheck == 1 and items.find(')') > -1:
|
if (SOACheck == 1 and items.find(')') > -1) or (SOACheck == 1 and items.find('NS') > -1 and items.find(zone.name) > -1):
|
||||||
SOACheck = 0
|
SOACheck = 0
|
||||||
start = 1
|
start = 1
|
||||||
continue
|
continue
|
||||||
|
|
@ -530,6 +530,9 @@ class cPanelImporter:
|
||||||
pass
|
pass
|
||||||
|
|
||||||
if start == 1:
|
if start == 1:
|
||||||
|
if os.path.exists(ProcessUtilities.debugPath):
|
||||||
|
message = f'Current DNS record we are creating for {zone.name} is {items}'
|
||||||
|
logging.statusWriter(self.logFile, message, 1)
|
||||||
if len(items) > 3:
|
if len(items) > 3:
|
||||||
if items.find("DKIM1") > -1:
|
if items.find("DKIM1") > -1:
|
||||||
continue
|
continue
|
||||||
|
|
|
||||||
|
|
@ -19,7 +19,7 @@ oauthlib==3.1.0
|
||||||
paramiko==2.9.2
|
paramiko==2.9.2
|
||||||
pexpect==4.8.0
|
pexpect==4.8.0
|
||||||
psutil==5.7.3
|
psutil==5.7.3
|
||||||
py3dns==3.2.1
|
py3dns==4.0.2
|
||||||
pyOpenSSL==19.1.0
|
pyOpenSSL==19.1.0
|
||||||
pysftp
|
pysftp
|
||||||
pyotp
|
pyotp
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue