mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-22 23:23:30 -06:00
2c0fe1dd92
Fixes:https://pagure.io/freeipa/issue/9501 Signed-off-by: zoedong <zoedong@tencent.com> Reviewed-By: Rob Crittenden <rcritten@redhat.com>
24 lines
523 B
Python
24 lines
523 B
Python
#
|
|
# Copyright (C) 2024 FreeIPA Contributors see COPYING for license
|
|
#
|
|
|
|
"""
|
|
This TencentOS base platform module exports platform related constants.
|
|
"""
|
|
|
|
# Fallback to default path definitions
|
|
from __future__ import absolute_import
|
|
|
|
from ipaplatform.redhat.constants import RedHatConstantsNamespace, User, Group
|
|
|
|
|
|
__all__ = ("constants", "User", "Group")
|
|
|
|
|
|
class TencentOSConstantsNamespace(RedHatConstantsNamespace):
|
|
SECURE_NFS_VAR = None
|
|
NAMED_OPENSSL_ENGINE = "pkcs11"
|
|
|
|
|
|
constants = TencentOSConstantsNamespace()
|