This file is indexed.

/usr/share/ltsp/plugins/ltsp-build-client/Debian/080-eatmydata 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
case "$MODE" in
    commandline)
        add_option "eatmydata" "`eval_gettext "use eatmydata to speed up build times, at risk of data not getting written to disk"`" "advanced" "false"
        ;;
    configure)
        if [ -n "$option_eatmydata_value" ]; then
            # load libeatmydata
            libeatmydata=/usr/lib/libeatmydata/libeatmydata.so
            if [ -n "$LD_PRELOAD" ]; then
                export LD_PRELOAD="$libeatmydata $LD_PRELOAD"
            else
                export LD_PRELOAD="$libeatmydata"
            fi
            # install eatmydata package early during debootstrap
            if [ -z "$INCLUDE" ]; then
                INCLUDE="eatmydata"
            else
                INCLUDE="$INCLUDE,eatmydata"
            fi 
        fi
        ;;
esac