/usr/bin/ltsp-info is in ltsp-server 5.3.7-0ubuntu2.
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 | #!/bin/sh
# Copyright (c) 2006-2009 Vagrant Cascadian <vagrant@freegeek.org>
# 2012, Alkis Georgopoulos <alkisg@gmail.com>
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License as
# published by the Free Software Foundation; either version 2 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, you can find it on the World Wide
# Web at http://www.gnu.org/copyleft/gpl.html, or write to the Free
# Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
# MA 02110-1301, USA.
# generic functions
find_chroots() {
find $BASE -mindepth 1 -maxdepth 1 -type d
}
find_lts_conf() {
chroot=$1
chroot_name=$(basename $chroot)
lts_conf_dirs="$chroot/etc /var/lib/tftpboot/ltsp/$chroot_name /srv/tftp/ltsp/$chroot_name /tftpboot/ltsp/$chroot_name"
for lts_conf_dir in $lts_conf_dirs ; do
lts_conf=$lts_conf_dir/lts.conf
if [ -f "$lts_conf" ]; then
echo found: "$lts_conf"
if [ "$verbose" = "true" ]; then
cat "$lts_conf"
fi
echo
fi
done
}
find_images() {
if [ -d "$BASE/images" ]; then
for image in $(find $BASE/images/ -type f -name '*.img' ); do
echo found image: $image
if [ "$verbose" = "true" ] && [ -x /usr/bin/file ]; then
file $image
fi
echo
done
fi
}
# Distros may override that if they don't support lsb_release
server_info() {
echo server information:
lsb_release --all
echo
}
# distro specific functions
server_packages() {
die "Your distro needs to implement function server_packages in order to support $0."
}
chroot_packages() {
die "Your distro needs to implement function chroot_packages in order to support $0."
}
chroot_release() {
die "Your distro needs to implement function chroot_release in order to support $0."
}
# ltsp-server-functions also sources distro specific function overrides
. /usr/share/ltsp/ltsp-server-functions
export BASE=${BASE:-/opt/ltsp} # LTSP base directory
for opt in $@ ; do
case $opt in
--no-server-info) server_info="false" ;;
--verbose|-v) verbose="true" ;;
esac
done
if [ "$server_info" != "false" ]; then
server_info
server_packages
fi
for chroot in $(find_chroots) ; do
chroot_name=$(basename $chroot)
if [ "$verbose" = "true" ]; then
chroot_release
fi
chroot_packages $chroot
find_lts_conf $chroot
done
find_images
|