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()
|