This file is indexed.

/usr/sbin/debian-edu-ltsp is in debian-edu-config 1.818+deb8u2.

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
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
#!/bin/sh
#
# Set up LTSP environment for Debian Edu
#
# Author: Petter Reinholdtsen
# Date:   2005-10-08

base=
dist=

while [ $# -gt 0 ] ; do 
  case "$1" in 
    --base) base="$2" ; shift ;;
    --dist) dist="$2" ; shift ;;
    --arch) arch="$2" ; shift ;;
  esac
  shift
done

if [ -z "$base" -a -z "$arch" ] ; then 
  case $(uname -m) in
    ppc) ARCH=powerpc ;;
    i*86) ARCH=i386 ;;
    x86_64) ARCH=amd64 ;;
    *) echo "Unknown Architecture, please fix the script $0"
       exit 9
       ;;
  esac
elif [ -n "$arch" ] ; then
  ARCH="$arch"
fi

# Make the installation a bit more quiet when started from the command line
# The locale is not setup in the thin client chroot (yet?)
LC_ALL=C
export LC_ALL

test "$base" || base=/opt/ltsp
test "$dist" || dist=$(debian-edu-current-codename)

if [ -d $base/$ARCH ] ; then
    echo "error: $base/$ARCH already exist.  Remove it before running $0"
    echo "       If you want to install in parallell with an old installation, "
    echo "       please use --base <new location> as an option"
    exit 1
fi

# Check if server uses install or cd to install
if apt-cache policy ltsp-client | grep -q "cdrom://" ; then 
  mirror=file:///media/cdrom
  components="main local"
  securitymirror=""
  extramirror=""
else
  mirror=http://http.debian.net/debian
  extramirror=""
  securitymirror="http://security.debian.org/ $dist/updates main contrib"
  components="main contrib"
fi

umounts=
exit_handler() {
    # Unmount if anything is mounted
    for dir in $umounts ; do
	info "Unmounting $dir"
	umount $dir || true
    done
}
trap exit_handler EXIT INT

# Mount the CD ROM if needed
case $mirror in
    file:///cdrom)
        mount /cdrom
	umounts="/cdrom"
	;;
    file:///media/cdrom)
        mount /media/cdrom
	umounts="/media/cdrom"
	;;
    *)
        ;;
esac

if ltsp-build-client --help 2>&1 |grep -q -- --root ; then
    # Old version
    ltspopts="--root $base/$ARCH"
else
    # new version (at least >= 0.93debian1)
    ltspopts="--eatmydata --accept-unsigned-packages --base /opt/ltsp --arch $ARCH"
fi

# Build LTSP chroot, fetch packages from default APT sources
# FIXME: Added ugly workaround to let installation succeed in case the
# dictionaries-common problem occurs.
if ltsp-build-client \
  $ltspopts \
  --mirror $mirror \
  --dist $dist \
  --components "$components" \
  --security-mirror "$securitymirror" \
  --extra-mirror "$extramirror" ; then
  :
  else
  ltsp-chroot /usr/share/debconf/fix_db.pl
  ltsp-chroot dpkg --configure -a
fi

#populate /var/lib/tftpboot with kernel images and pxelinux configuration
if [ -f /usr/sbin/ltsp-update-kernels ] ; then
     ltsp-update-kernels
fi

# And update ssh keys
if [ -x /usr/sbin/ltsp-update-sshkeys ]; then
    ltsp-update-sshkeys
fi