This file is indexed.

/usr/share/ltsp/plugins/ltsp-build-client/Ubuntu/095-update-image 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
19
20
21
22
23
24
25
26
27
28
29
30
31
32
case "$MODE" in
    commandline)
        add_option "skipimage" "`eval_gettext "force to skip the squashfs build (for debian-installer)"`" "advanced" "false"
        ;;
    configure)
        if [ -z "$option_skipimage_value" ]; then
            # set an environment variable we can pick up later
            BUILD_IMAGE="True"
        fi
        ;;
    finalization)
        if [ -n "$BUILD_IMAGE" ]; then
            DEBIAN_OLD_FRONTEND=$DEBIAN_FRONTEND

            if [ -n "$CHROOT" ]; then
                UPDATE_IMAGE_OPTIONS="${CHROOT}"
            fi

            DEBIAN_FRONTEND=noninteractive
            export DEBIAN_FRONTEND

            chroot $ROOT /etc/kernel/postinst.d/ltsp-update-kernels

            /usr/sbin/ltsp-update-image ${UPDATE_IMAGE_OPTIONS}

            DEBIAN_FRONTEND=$DEBIAN_OLD_FRONTEND
            export DEBIAN_FRONTEND
        else
            echo "Warning: --skipimage set, not building squashfs image, run ltsp-update-image later"
        fi
        ;;
esac