/usr/bin/ltsp-info is in ltsp-server 5.5.4-4.
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 118 119 120 121 122 123 | #!/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
usage() {
cat <<EOF
Usage: $0 [OPTION]
Displays information useful to troubleshooting issues on an LTSP
server. Information should include server distro and release,
versions of LTSP related packages installed on the server, LTSP
chroots and their package versions, LTSP image files and lts.conf(5).
Options:
-h, --help Displays the ltsp-info help message.
-n, --no-server-info Do not display server information.
-v, --verbose Display more information, such as including the contents
of detected files.
--version Output version information and exit.
EOF
}
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."
}
# Set an optional MODULES_BASE, so help2man can be called from build env
MODULES_BASE=${MODULES_BASE:-/usr/share/ltsp}
# This also sources vendor functions and .conf file settings
. ${MODULES_BASE}/ltsp-server-functions
export BASE=${BASE:-/opt/ltsp} # LTSP base directory
for opt in $@ ; do
case $opt in
--help|-h) usage; exit 0 ;;
--no-server-info|-n) server_info="false" ;;
--verbose|-v) verbose="true" ;;
--version) ltsp_version; exit 0 ;;
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
|