This file is indexed.

/usr/share/ltsp/plugins/ltsp-build-client/Debian/000-daemon-handling is in ltsp-server 5.4.2-6+deb7u1.

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
case "$MODE" in
    after-install)
        # Install start-stop-daemon wrapper
        chroot $ROOT dpkg-divert --package ltsp-client --add --rename \
                                 --divert /sbin/start-stop-daemon.real \
                                          /sbin/start-stop-daemon
        cp /usr/share/ltsp/scripts/start-stop-daemon $ROOT/sbin/

        # Install policy-rc.d wrapper
        cp /usr/share/ltsp/scripts/policy-rc.d.ltsp  $ROOT/usr/sbin/
        chroot $ROOT update-alternatives --install /usr/sbin/policy-rc.d policy-rc.d \
                                                   /usr/sbin/policy-rc.d.ltsp 100

        # Export LTSP_HANDLE_DAEMONS to avoid running daemons while
        # creating the chroot.
        export LTSP_HANDLE_DAEMONS="false"
        ;;
esac