2015-07-02 12:38:43 +02:00
|
|
|
#
|
|
|
|
|
# Copyright (C) 2015 FreeIPA Contributors see COPYING for license
|
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
'''
|
|
|
|
|
This base platform module exports platform dependant constants.
|
|
|
|
|
'''
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class BaseConstantsNamespace(object):
|
2016-01-19 14:18:30 +01:00
|
|
|
DS_USER = 'dirsrv'
|
|
|
|
|
DS_GROUP = 'dirsrv'
|
2015-10-06 16:02:37 +03:00
|
|
|
HTTPD_USER = "apache"
|
2016-12-13 10:32:32 -05:00
|
|
|
HTTPD_GROUP = "apache"
|
2016-11-29 11:10:22 -05:00
|
|
|
GSSPROXY_USER = "root"
|
2015-07-01 15:05:45 +02:00
|
|
|
IPA_DNS_PACKAGE_NAME = "freeipa-server-dns"
|
2016-03-18 12:22:33 +02:00
|
|
|
KDCPROXY_USER = "kdcproxy"
|
2015-10-06 16:27:21 +03:00
|
|
|
NAMED_USER = "named"
|
2016-03-18 12:22:33 +02:00
|
|
|
NAMED_GROUP = "named"
|
2016-01-19 14:18:30 +01:00
|
|
|
PKI_USER = 'pkiuser'
|
|
|
|
|
PKI_GROUP = 'pkiuser'
|
2015-10-06 18:46:00 +03:00
|
|
|
# ntpd init variable used for daemon options
|
|
|
|
|
NTPD_OPTS_VAR = "OPTIONS"
|
|
|
|
|
# quote used for daemon options
|
|
|
|
|
NTPD_OPTS_QUOTE = "\""
|
2016-03-18 12:22:33 +02:00
|
|
|
ODS_USER = "ods"
|
|
|
|
|
ODS_GROUP = "ods"
|
2015-10-06 16:35:24 +03:00
|
|
|
# nfsd init variable used to enable kerberized NFS
|
|
|
|
|
SECURE_NFS_VAR = "SECURE_NFS"
|
2017-05-18 17:23:54 +02:00
|
|
|
SELINUX_BOOLEAN_ADTRUST = {
|
|
|
|
|
'samba_portmapper': 'on',
|
|
|
|
|
}
|
2017-05-18 17:19:23 +02:00
|
|
|
SELINUX_BOOLEAN_HTTPD = {
|
|
|
|
|
'httpd_can_network_connect': 'on',
|
|
|
|
|
'httpd_manage_ipa': 'on',
|
|
|
|
|
'httpd_run_ipa': 'on',
|
|
|
|
|
'httpd_dbus_sssd': 'on',
|
|
|
|
|
}
|
2016-03-18 12:22:33 +02:00
|
|
|
SSSD_USER = "sssd"
|
2018-02-06 10:05:49 +01:00
|
|
|
# WSGI module override, only used on Fedora
|
|
|
|
|
MOD_WSGI_PYTHON2 = None
|
|
|
|
|
MOD_WSGI_PYTHON3 = None
|
2018-02-09 11:50:32 +01:00
|
|
|
# high ciphers without RC4, MD5, TripleDES, pre-shared key, secure
|
|
|
|
|
# remote password, and DSA cert authentication.
|
|
|
|
|
TLS_HIGH_CIPHERS = "HIGH:!aNULL:!eNULL:!MD5:!RC4:!3DES:!PSK:!SRP:!aDSS"
|
2018-02-06 10:05:49 +01:00
|
|
|
|
2017-10-11 12:09:30 +02:00
|
|
|
|
|
|
|
|
constants = BaseConstantsNamespace()
|