mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-24 08:00:02 -06:00
b5bdd07bc5
Add absolute_import from __future__ so that pylint does not fail and to achieve python3 behavior in python2. Reviewed-By: Christian Heimes <cheimes@redhat.com> Reviewed-By: Alexander Bokovoy <abokovoy@redhat.com>
19 lines
437 B
Python
19 lines
437 B
Python
#
|
|
# Copyright (C) 2015 FreeIPA Contributors see COPYING for license
|
|
#
|
|
|
|
'''
|
|
This RHEL base platform module exports platform related constants.
|
|
'''
|
|
|
|
# Fallback to default constant definitions
|
|
from __future__ import absolute_import
|
|
|
|
from ipaplatform.redhat.constants import RedHatConstantsNamespace
|
|
|
|
|
|
class RHELConstantsNamespace(RedHatConstantsNamespace):
|
|
IPA_DNS_PACKAGE_NAME = "ipa-server-dns"
|
|
|
|
constants = RHELConstantsNamespace()
|