This file is indexed.

/usr/share/ltsp/plugins/ltsp-build-client/Debian/040-copy-package-lists is in ltsp-server 5.5.7-1.

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
case "$MODE" in
    commandline)
        add_option "copy-package-lists" "`eval_gettext "copy apt Packages files from server"`" "advanced" "false"
        ;;
    configure)
        if [ -n "$option_copy_package_lists_value" ]; then
            COPY_PACKAGE_LISTS=true
        fi
        ;;
    before-install)
        if [ "true" = "$COPY_PACKAGE_LISTS" ]; then
            mkdir -p $ROOT/var/lib/apt/lists/
            cp -p /var/lib/apt/lists/*Packages $ROOT/var/lib/apt/lists/
        fi
        ;;
esac