mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
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()
|