blob: 42115ddd2c2277c496e4d5249b3791413ddd4225 (
plain)
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
|
# 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
|