2015-07-02 05:38:43 -05:00
|
|
|
#
|
|
|
|
# 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
|
2018-04-05 02:21:16 -05:00
|
|
|
from __future__ import absolute_import
|
|
|
|
|
2015-07-02 05:38:43 -05:00
|
|
|
from ipaplatform.base.constants import BaseConstantsNamespace
|
|
|
|
|
|
|
|
|
|
|
|
class RedHatConstantsNamespace(BaseConstantsNamespace):
|
2019-11-22 03:42:11 -06:00
|
|
|
# Use system-wide crypto policy
|
2019-07-02 02:49:59 -05:00
|
|
|
# see https://fedoraproject.org/wiki/Changes/CryptoPolicy
|
2019-11-22 03:42:11 -06:00
|
|
|
TLS_HIGH_CIPHERS = None
|
2019-07-02 02:49:59 -05:00
|
|
|
|
2015-07-02 05:38:43 -05:00
|
|
|
|
|
|
|
constants = RedHatConstantsNamespace()
|