mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
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.
10 lines
362 B
Python
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")
|