diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2022-01-14 13:08:26 +0100 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2022-01-14 13:08:26 +0100 |
commit | c7c81e760501f524d53d07c3624de4f019325c5e (patch) | |
tree | 08a093971d0aa9378e71b8f806814894240786d6 /examples/disklserver/x2gothinclient-settings.conf | |
parent | 9fffa36095ae77df86099fd729d09e002c8494fb (diff) | |
download | itzks-systems-c7c81e760501f524d53d07c3624de4f019325c5e.tar.gz itzks-systems-c7c81e760501f524d53d07c3624de4f019325c5e.tar.bz2 itzks-systems-c7c81e760501f524d53d07c3624de4f019325c5e.zip |
examples/disklserver/: Add X2Go TCE example configuration.
Diffstat (limited to 'examples/disklserver/x2gothinclient-settings.conf')
-rw-r--r-- | examples/disklserver/x2gothinclient-settings.conf | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/examples/disklserver/x2gothinclient-settings.conf b/examples/disklserver/x2gothinclient-settings.conf new file mode 100644 index 0000000..42115dd --- /dev/null +++ b/examples/disklserver/x2gothinclient-settings.conf @@ -0,0 +1,61 @@ +# Copyright (C) 2010-2021 by X2Go project, http://wiki.x2go.org +# Oleksandr Shneyder <oleksandr.shneyder@obviously-nice.de> +# Moritz 'Morty' Struebe <Moritz.Struebe@informatik.uni-erlangen.de> +# Mike Gabriel <mike.gabriel@das-netzwerkteam.de> + +# 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 |