This file is indexed.

/usr/lib/python2.7/dist-packages/ipaplatform/redhat/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
#
# Copyright (C) 2015  FreeIPA Contributors see COPYING for license
#

'''
This Red Hat OS family base platform module exports default platform
related constants for the Red Hat OS family-based systems.
'''

# Fallback to default path definitions
from ipaplatform.base.constants import BaseConstantsNamespace


class RedHatConstantsNamespace(BaseConstantsNamespace):
    pass

constants = RedHatConstantsNamespace()