This file is indexed.

/usr/lib/python2.7/dist-packages/ipaserver/install/plugins/update_ldap_server_list.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
31
32
33
34
35
36
37
38
#
# Copyright (C) 2016  FreeIPA Contributors see COPYING for license
#

from ipalib import Registry
from ipalib import Updater
from ipalib import errors
from ipapython.dn import DN

register = Registry()


@register()
class update_ldap_server_list(Updater):
    """
    Update defaultServerList, an option that helps Solaris
    clients discover LDAP server replicas.
    """
    def execute(self, **options):
        ldap = self.api.Backend.ldap2

        dn = DN(('cn', 'default'), ('ou', 'profile'), self.api.env.basedn)
        try:
            entry = ldap.get_entry(dn)
            srvlist = entry.single_value.get('defaultServerList', '')
            srvlist = srvlist.split()
            if not self.api.env.host in srvlist:
                srvlist.append(self.api.env.host)
                attr = ' '.join(srvlist)
                entry['defaultServerList'] = attr
                ldap.update_entry(entry)
        except errors.NotFound:
            pass
        except ldap.TYPE_OR_VALUE_EXISTS:
            pass

        # no restart, no updates
        return False, ()