mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-23 23:50:03 -06:00
3e8c51922b
Co-authored-by: Howard Guo <hguo@suse.com> Co-authored-by: Daniel Molkentin <dmolkentin@suse.com> Co-authored-by: Marcus Rückert <darix@nordisch.org> Reviewed-By: Christian Heimes <cheimes@redhat.com> Reviewed-By: Alexander Bokovoy <abokovoy@redhat.com>
23 lines
524 B
Python
23 lines
524 B
Python
#
|
|
# Copyright (C) 2020 FreeIPA Contributors, see COPYING for license
|
|
#
|
|
|
|
"""
|
|
This SUSE OS family base platform module exports default platform
|
|
related constants for the SUSE OS family-based systems.
|
|
"""
|
|
|
|
# Fallback to default path definitions
|
|
from ipaplatform.base.constants import BaseConstantsNamespace
|
|
|
|
|
|
class SuseConstantsNamespace(BaseConstantsNamespace):
|
|
HTTPD_USER = "wwwrun"
|
|
HTTPD_GROUP = "www"
|
|
# Don't have it yet
|
|
SSSD_USER = "root"
|
|
TLS_HIGH_CIPHERS = None
|
|
|
|
|
|
constants = SuseConstantsNamespace()
|