This file is indexed.

/usr/lib/python2.7/dist-packages/ipaplatform/debian/constants.py is in python-ipalib 4.7.0~pre1+git20180411-2ubuntu2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#
# 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"
    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()