26 lines
631 B
Python
26 lines
631 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 __future__ import absolute_import
|
|
|
|
from ipaplatform.base.constants import BaseConstantsNamespace, User, Group
|
|
|
|
|
|
__all__ = ("constants", "User", "Group")
|
|
|
|
|
|
class RedHatConstantsNamespace(BaseConstantsNamespace):
|
|
# Use system-wide crypto policy
|
|
# see https://fedoraproject.org/wiki/Changes/CryptoPolicy
|
|
TLS_HIGH_CIPHERS = None
|
|
|
|
|
|
constants = RedHatConstantsNamespace()
|