2017-01-05 12:41:08 +02:00
|
|
|
#
|
|
|
|
|
# Copyright (C) 2017 FreeIPA Contributors see COPYING for license
|
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
'''
|
|
|
|
|
This Debian family platform module exports platform dependant constants.
|
|
|
|
|
'''
|
|
|
|
|
|
|
|
|
|
# Fallback to default path definitions
|
2018-04-05 09:21:16 +02:00
|
|
|
from __future__ import absolute_import
|
|
|
|
|
|
2017-01-05 12:41:08 +02:00
|
|
|
from ipaplatform.base.constants import BaseConstantsNamespace
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class DebianConstantsNamespace(BaseConstantsNamespace):
|
|
|
|
|
HTTPD_USER = "www-data"
|
2018-05-21 14:08:15 +03:00
|
|
|
HTTPD_GROUP = "www-data"
|
2017-01-05 12:41:08 +02:00
|
|
|
NAMED_USER = "bind"
|
|
|
|
|
NAMED_GROUP = "bind"
|
2017-03-29 18:17:28 +03:00
|
|
|
NAMED_DATA_DIR = ""
|
|
|
|
|
NAMED_ZONE_COMMENT = "//"
|
2017-01-05 12:41:08 +02:00
|
|
|
# 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()
|