mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-01-27 16:46:42 -06:00
7a27651a0a
Reviewed-By: Stanislav Laznicka <slaznick@redhat.com> Reviewed-By: Christian Heimes <cheimes@redhat.com>
29 lines
733 B
Python
29 lines
733 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 __future__ import absolute_import
|
|
|
|
from ipaplatform.base.constants import BaseConstantsNamespace
|
|
|
|
|
|
class DebianConstantsNamespace(BaseConstantsNamespace):
|
|
HTTPD_USER = "www-data"
|
|
HTTPD_GROUP = "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()
|