/usr/share/pyshared/easyzone/zone_reload.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_reload
A wrapper around 'rndc' for requesting zone reloads from named.
Example::
>>> from easyzone.zone_reload import ZoneReload
>>> r = ZoneReload()
>>> r.reload('example.com')
zone reload up-to-date
>>> r.reload('foo.com')
rndc: 'reload' failed: not found
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "easyzone/zone_reload.py", line 51, in reload
raise ZoneReloadError("rndc failed with return code %d" % r)
easyzone.zone_reload.ZoneReloadError: rndc failed with return code 1
>>>
>>> r = ZoneReload(rndc='/usr/sbin/rndc')
>>> r.reload('example.com')
zone reload up-to-date
>>>
'''
__author__ = 'Chris Miles'
__copyright__ = '(c) Chris Miles 2007'
__id__ = '$Id$'
__url__ = '$URL$'
__version__ = '1.0'
# ---- Imports ----
# - Python Modules -
import subprocess
# ---- Exceptions ----
class ZoneReloadError(Exception):
'''An error occurred within ZoneReload.
'''
# ---- Classes ----
class ZoneReload(object):
'''A wrapper around bind's rndc utility, used for reloading a modified
DNS zone.
`rndc` : string containing path to rndc binary. Or leave as "rndc"
to search with default PATH.
'''
def __init__(self, rndc='rndc'):
self.rndc = rndc
def reload(self, zone):
'''Ask named to perform a zone reload by calling the
rndc commmand.
'''
cmd = [
self.rndc,
'reload',
zone
]
r = subprocess.call(cmd)
if r != 0:
raise ZoneReloadError("rndc failed with return code %d" % r)
|