mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-28 01:41:14 -06:00
17 lines
368 B
Python
17 lines
368 B
Python
|
#
|
||
|
# Copyright (C) 2015 FreeIPA Contributors see COPYING for license
|
||
|
#
|
||
|
|
||
|
'''
|
||
|
This Fedora base platform module exports platform related constants.
|
||
|
'''
|
||
|
|
||
|
# Fallback to default constant definitions
|
||
|
from ipaplatform.redhat.constants import RedHatConstantsNamespace
|
||
|
|
||
|
|
||
|
class FedoraConstantsNamespace(RedHatConstantsNamespace):
|
||
|
pass
|
||
|
|
||
|
constants = FedoraConstantsNamespace()
|