mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-23 07:33:27 -06:00
bc128cae47
Signed-off-by: Christian Heimes <cheimes@redhat.com> Reviewed-By: Rob Crittenden <rcritten@redhat.com>
26 lines
599 B
Python
26 lines
599 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, User, Group
|
|
|
|
|
|
__all__ = ("constants", "User", "Group")
|
|
|
|
|
|
class SuseConstantsNamespace(BaseConstantsNamespace):
|
|
HTTPD_USER = User("wwwrun")
|
|
HTTPD_GROUP = Group("www")
|
|
# Don't have it yet
|
|
SSSD_USER = User("root")
|
|
TLS_HIGH_CIPHERS = None
|
|
|
|
|
|
constants = SuseConstantsNamespace()
|