blob: 5cb2466f066bc9174925893d65c40817df978c94 (
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
|
[server]
# Debian Edu 10 pretty name
IPXE_AMD64_BUSTER_IMG="Debian Edu 10 Diskless Workstation (SquashFS Image)"
IPXE_AMD64_BUSTER="Debian Edu 10 Diskless Workstation (NFS rootfs)"
# Debian Edu 11 pretty name
IPXE_AMD64_BULLSEYE_IMG="Debian Edu 11 Diskless Workstation (SquashFS Image)"
IPXE_AMD64_BULLSEYE="Debian Edu 11 Diskless Workstation (NFS rootfs)"
# Debian Edu 12 (aka testing/unstable) pretty name
IPXE_AMD64_BOOKWORM_IMG="Debian Edu testing/unstable Diskless Workstation (SquashFS Image)"
IPXE_AMD64_BOOKWORM="Debian Edu testing/unstable Diskless Workstation (NFS rootfs)"
# Debian Edu specific
DNS_SERVER=10.0.2.2
SEARCH_DOMAIN=intern
KERNEL_PARAMETERS="quiet splash"
ADD_IMAGE_EXCLUDES="/etc/ltsp/image-local.excludes"
OMIT_IMAGE_EXCLUDES="root/.*"
[clients]
HOSTS_1="10.0.2.2 tjener.intern tjener"
HOSTS_2="10.0.2.9 disklserver.intern disklserver"
LIGHTDM_CONF="greeter-hide-users=true"
POST_INIT_USE_FQDN="sed -i '/10.0.2.2/ s/server/tjener.intern tjener/' /etc/hosts"
POST_INIT_SITESUMMARY="sed -i 's/main-server/ltsp-client/' /etc/sitesummary/hostclass"
MASK_SYSTEM_SERVICES="apache2 etckeeper icinga2 nmbd smbd systemd-journald isc-dhcp-server"
# Allow local root logins by setting a password hash for the root user.
# The hash contains $, making it hard to escape in POST_INIT_x="sed ...".
# So put sed in a section and call it at POST_INIT like this:
POST_INIT_SET_ROOT_HASH="section_set_root_hash"
[set_root_hash]
sed 's|^root:[^:]*:|root:@rootpw@:|' -i /etc/shadow
|