This file is indexed.

/usr/lib/python2.7/dist-packages/ipaserver/secrets/service.py is in python-ipaserver 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
27
28
29
30
# Copyright (C) 2017  IPA Project Contributors, see COPYING for license
import argparse

import custodia.server  # pylint: disable=relative-import


argparser = argparse.ArgumentParser(
    prog='ipa-custodia',
    description='IPA Custodia service'
)
argparser.add_argument(
    '--debug',
    action='store_true',
    help='Debug mode'
)
argparser.add_argument(
    'configfile',
    nargs='?',
    type=argparse.FileType('r'),
    help="Path to IPA's custodia server config",
    default='/etc/ipa/custodia/custodia.conf'
)


def main():
    return custodia.server.main(argparser)


if __name__ == '__main__':
    main()