Files
freeipa/ipapython/platform/utils.py
Krzysztof Klimonda bbb86e36aa move check_inst out of bindinstance.py
create a new platform utils module which imports a proper implementation
from platform.PLATFORM.instances.utils. Move the current check_inst to the
fedora16 package and create debian implementation which uses dpkg-query
to check for bind9 and bind-dyndb-ldap packages.
2012-04-17 00:26:03 +02:00

10 lines
362 B
Python

"""small utils used by other instances that require platform-dependent
implementations"""
from .SUPPORTED_PLATFORM.utils import *
def bind_check_installation(unattended):
"""checks if the bind server has been properly installed."""
raise NotImplementedError("this function has to be implemented"
"in the platform module")