Update 'maker_rpz.py'

This commit is contained in:
Kale 2021-08-02 08:30:58 -07:00
parent 9f3e40a474
commit 952d6872d3
No known key found for this signature in database
GPG Key ID: F8A6CE83F1274467

View File

@ -32,9 +32,9 @@ def RPZbuilding(excluded,incoming,output):
for line in lines:
if line.strip() and not line in exclude and not line.startswith(';'):
f.write('\n'.join([line + ' CNAME .\n']))
if line.startswith((';','$','@',' IN')):
elif line.startswith((';','$','@',' IN')):
f.write('\n'.join([line + '\n']))
if not line.strip():
elif not line.strip():
f.write('\n'.join([line + '\n']))
f.close()