/usr/share/pyshared/easyzone/zone_check.py is in python-easyzone 1.2.2-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 | # encoding: utf-8
'''zone_check
A wrapper around 'named-checkzone' for checking the validity and syntax of zone files.
Example::
>>> from easyzone.zone_check import ZoneCheck
>>> c = ZoneCheck()
>>> c.isValid('example.com', '/var/named/zones/example.com')
True
>>> c.isValid('foo.com', '/var/named/zones/example.com')
False
>>> c.error
'Bad syntax'
>>>
>>> c = ZoneCheck(checkzone='/usr/sbin/named-checkzone')
>>> c.isValid('example.com', '/var/named/zones/example.com')
True
>>>
'''
__author__ = 'Chris Miles'
__copyright__ = '(c) Chris Miles 2007'
__id__ = '$Id$'
__url__ = '$URL$'
__version__ = '1.0'
# ---- Imports ----
# - Python Modules -
import subprocess
# ---- Exceptions ----
# ---- Classes ----
class ZoneCheck(object):
'''A wrapper around bind's named-checkzone utility, used for checking the
syntax of a zone file.
`checkzone` : string containing path to named-checkzone binary. Or leave
as "named-checkzone" to search with default PATH.
'''
def __init__(self, checkzone='checkzone'):
self.checkzone = checkzone
self.error = None
def isValid(self, zonename, filename):
'''Ask named to check the syntax of a zone file by calling the
named-checkzone commmand.
'''
cmd = [
self.checkzone,
'-q',
zonename,
filename
]
r = subprocess.call(cmd)
if r != 0:
self.error = 'Bad syntax'
return False
else:
self.error = None
return True
|