mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-28 01:41:14 -06:00
17 lines
362 B
Python
17 lines
362 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 ipaplatform.redhat.constants import RedHatConstantsNamespace
|
||
|
|
||
|
|
||
|
class RHELConstantsNamespace(RedHatConstantsNamespace):
|
||
|
pass
|
||
|
|
||
|
constants = RHELConstantsNamespace()
|