2015-07-02 05:38:43 -05:00
|
|
|
#
|
|
|
|
# Copyright (C) 2015 FreeIPA Contributors see COPYING for license
|
|
|
|
#
|
|
|
|
|
|
|
|
'''
|
|
|
|
This Fedora base platform module exports platform related constants.
|
|
|
|
'''
|
|
|
|
|
|
|
|
# Fallback to default constant definitions
|
2018-04-05 02:21:16 -05:00
|
|
|
from __future__ import absolute_import
|
|
|
|
|
2015-07-02 05:38:43 -05:00
|
|
|
from ipaplatform.redhat.constants import RedHatConstantsNamespace
|
|
|
|
|
|
|
|
|
|
|
|
class FedoraConstantsNamespace(RedHatConstantsNamespace):
|
2018-02-06 03:05:49 -06:00
|
|
|
# Fedora allows installation of Python 2 and 3 mod_wsgi, but the modules
|
|
|
|
# can't coexist. For Apache to load correct module.
|
|
|
|
MOD_WSGI_PYTHON2 = "modules/mod_wsgi.so"
|
|
|
|
MOD_WSGI_PYTHON3 = "modules/mod_wsgi_python3.so"
|
|
|
|
|
2018-02-09 04:50:32 -06:00
|
|
|
# System-wide crypto policy, but without TripleDES, pre-shared key,
|
|
|
|
# secure remote password, and DSA cert authentication.
|
|
|
|
# see https://fedoraproject.org/wiki/Changes/CryptoPolicy
|
|
|
|
TLS_HIGH_CIPHERS = "PROFILE=SYSTEM:!3DES:!PSK:!SRP:!aDSS"
|
|
|
|
|
2015-07-02 05:38:43 -05:00
|
|
|
|
|
|
|
constants = FedoraConstantsNamespace()
|