This file is indexed.

/usr/share/ltsp/plugins/ltsp-build-client/Ubuntu/016-no-recommends 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
case "$MODE" in
    finalization)
        if [ -n "$(echo ${APT_GET_OPTS} | grep '\-\-no\-install\-recommends')" ]; then
            mkdir -p $ROOT/etc/apt/apt.conf.d/
            (
            cat << EOF
APT {
    Install-Recommends "false";
};
EOF
            ) > $ROOT/etc/apt/apt.conf.d/02ltsp-noinstallrecommends
        fi
    ;;
esac