This file is indexed.

/usr/share/ltsp/plugins/ltsp-build-client/Debian/001-set-accept-unsigned-packages 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
case "$MODE" in
    commandline)
        add_option "accept-unsigned-packages" "`eval_gettext "allow unsigned packages during install"`" "advanced" "false"
        ;;
    configure)
        if [ -n "$option_accept_unsigned_packages_value" ]; then
            # FIXME: handle if APT_GET_OPTS has other values set.
            APT_GET_OPTS="$APT_GET_OPTS --force-yes"
            # requires debootstrap 1.0.30
            DEBOOTSTRAPOPTS="$DEBOOTSTRAPOPTS --no-check-gpg"
        fi
        ;;
esac