mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-26 00:41:25 -06:00
18 lines
417 B
Python
18 lines
417 B
Python
|
#
|
||
|
# Copyright (C) 2015 FreeIPA Contributors see COPYING for license
|
||
|
#
|
||
|
|
||
|
'''
|
||
|
This Red Hat OS family base platform module exports default platform
|
||
|
related constants for the Red Hat OS family-based systems.
|
||
|
'''
|
||
|
|
||
|
# Fallback to default path definitions
|
||
|
from ipaplatform.base.constants import BaseConstantsNamespace
|
||
|
|
||
|
|
||
|
class RedHatConstantsNamespace(BaseConstantsNamespace):
|
||
|
pass
|
||
|
|
||
|
constants = RedHatConstantsNamespace()
|