mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-26 00:41:25 -06:00
e04b75cb9e
v2: - use redhat_services.redhat_system_units.copy - don't use wildcard imports - add some empty lines to make pep8 happy v3: - make parse_ipa_version static v4: - make more methods static v5: - fix pylint issues - use syntax that doesn't break with python3 v6: - remove IPA_GETKEYTAB from paths, it's the same across distros Reviewed-By: Stanislav Laznicka <slaznick@redhat.com> Reviewed-By: Christian Heimes <cheimes@redhat.com>
26 lines
664 B
Python
26 lines
664 B
Python
#
|
|
# Copyright (C) 2017 FreeIPA Contributors see COPYING for license
|
|
#
|
|
|
|
'''
|
|
This Debian family platform module exports platform dependant constants.
|
|
'''
|
|
|
|
# Fallback to default path definitions
|
|
from ipaplatform.base.constants import BaseConstantsNamespace
|
|
|
|
|
|
class DebianConstantsNamespace(BaseConstantsNamespace):
|
|
HTTPD_USER = "www-data"
|
|
NAMED_USER = "bind"
|
|
NAMED_GROUP = "bind"
|
|
# ntpd init variable used for daemon options
|
|
NTPD_OPTS_VAR = "NTPD_OPTS"
|
|
# quote used for daemon options
|
|
NTPD_OPTS_QUOTE = "\'"
|
|
ODS_USER = "opendnssec"
|
|
ODS_GROUP = "opendnssec"
|
|
SECURE_NFS_VAR = "NEED_GSSD"
|
|
|
|
constants = DebianConstantsNamespace()
|