mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
Fixes:https://pagure.io/freeipa/issue/9501 Signed-off-by: zoedong <zoedong@tencent.com> Reviewed-By: Rob Crittenden <rcritten@redhat.com>
21 lines
507 B
Python
21 lines
507 B
Python
#
|
|
# Copyright (C) 2024 FreeIPA Contributors see COPYING for license
|
|
#
|
|
|
|
"""
|
|
This OpenCloudOS family base platform module exports default filesystem paths
|
|
as common in OpenCloudOS family-based systems.
|
|
"""
|
|
|
|
from __future__ import absolute_import
|
|
|
|
from ipaplatform.redhat.paths import RedHatPathNamespace
|
|
|
|
|
|
class OpenCloudOSPathNamespace(RedHatPathNamespace):
|
|
NAMED_CRYPTO_POLICY_FILE = "/etc/crypto-policies/back-ends/bind.config"
|
|
SYSCONFIG_NFS = "/etc/nfs.conf"
|
|
|
|
|
|
paths = OpenCloudOSPathNamespace()
|