# Copyright (C) 2010-2021 by X2Go project, http://wiki.x2go.org # Oleksandr Shneyder # Moritz 'Morty' Struebe # Mike Gabriel # X2Go 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. # # X2Go 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, write to the # Free Software Foundation, Inc., # 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. # select the TCE flavour (classical: "displaymanager", minimal MATE desktop shell: "minidesktop") TC_FLAVOUR="minidesktop" # Distro codename to use... TC_DISTRO_CODENAME="bullseye" # Architecture of the chroot... TC_DISTRO_ARCH="amd64" # path to X2Go thin client chroot TC_CHROOT="/srv/ltsp/x2go-${TC_FLAVOUR}+${TC_DISTRO_ARCH}+${TC_DISTRO_CODENAME}" # path to the X2Go thin client configuration TC_CONFIG="/etc/ltsp/settings_x2go-${TC_FLAVOUR}+${TC_DISTRO_ARCH}+${TC_DISTRO_CODENAME}" # shell to use when maintaining X2Go thin client chroot manually TC_SHELL="bash" # Use a http/ftp proxy during debootstrap (leave empty if direct connections to http/ftp are allowed) #TC_HTTP_PROXY="http://webcache.intern:3128" #TC_HTTPS_PROXY="http://webcache.intern:3128" #TC_FTP_PROXY="http://webcache.intern:3128" TC_HTTP_PROXY="http://faiserver:8000" TC_HTTPS_PROXY="http://faiserver:8000" TC_FTP_PROXY="http://faiserver:8000" echo "X2Go Thin Client Environment:" echo "=============================" echo "The X2Go Thin Client Environment is using the following" echo "settings:" echo echo "TC_FLAVOUR=$TC_FLAVOUR" echo "TC_DISTRO_CODENAME=$TC_DISTRO_CODENAME" echo "TC_DISTRO_ARCH=$TC_DISTRO_ARCH" echo "TC_CHROOT=$TC_CHROOT" echo "TC_CONFIG=$TC_CONFIG" echo "TC_SHELL=$TC_SHELL" echo "TC_HTTP_PROXY=$TC_HTTP_PROXY" echo "TC_HTTPS_PROXY=$TC_HTTPS_PROXY" echo "TC_FTP_PROXY=$TC_FTP_PROXY" echo