This file is indexed.

/usr/bin/ltsp-arch-debian-edu is in debian-edu-config 1.702.

This file is owned by root:root, with mode 0o755.

The actual contents of the file can be viewed below.

1
2
3
4
5
6
7
#!/bin/sh
arch="$(/usr/bin/dpkg --print-architecture)"
if [ 'amd64' = "$arch" ] ; then
    /bin/echo i386
else
    echo "$arch"
fi