diff options
| author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2022-01-04 20:03:43 +0100 |
|---|---|---|
| committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2022-01-04 21:18:51 +0100 |
| commit | 5f46640fe2d5ee5f18526df36fe0047be4abe431 (patch) | |
| tree | f92516936213a7a8027565cc0d5849f74f2f1bbc | |
| parent | f370c80d601e8ae9e10e0bc6830060b65c5ff54c (diff) | |
| download | debian-edu-fai+itzks-5f46640fe2d5ee5f18526df36fe0047be4abe431.tar.gz debian-edu-fai+itzks-5f46640fe2d5ee5f18526df36fe0047be4abe431.tar.bz2 debian-edu-fai+itzks-5f46640fe2d5ee5f18526df36fe0047be4abe431.zip | |
conf/debian-edu/faiinstall.conf: Mostly commented out (default) config for debian-edu-faiinstall script.
| -rw-r--r-- | conf/debian-edu/faiinstall.conf | 85 |
1 files changed, 85 insertions, 0 deletions
diff --git a/conf/debian-edu/faiinstall.conf b/conf/debian-edu/faiinstall.conf new file mode 100644 index 0000000..4ffd80d --- /dev/null +++ b/conf/debian-edu/faiinstall.conf @@ -0,0 +1,85 @@ +# Examples for local settings that can customize the +# 'debian-edu-faiinstall' script. + +# Run 'debian-edu-faiinstall' to re-generate the netboot +# environment and the iPXE menu each time any changes have +# been made... + +# For enabling FAI's savelog feature (pushing the installation logs +# of clients to the FAI server host at the end of an installation), +# some manual steps are required: +# +# IMPORTANT: These steps are required _before_ creating any nfsroot +# installer chroots (i.e. before running the debian-edu-faiinstall script). +# +# 1. Comment out fai_logserver and fai_loguser below. +# 2. adduser --system --home /var/log/fai/client-logs --shell /bin/bash fai +# 3. su - fai +# 4. ssh-keygen +# 5. cat ~fai/.ssh/id_rsa.pub > ~fai/.ssh/authorized_keys +# 6. Create ~fai/.ssh/known_hosts by... +# 7. (as user 'fai'): ssh fai@$(hostname -f) +# 8. Accept host key and by that add it to ~fai/.ssh/known_hosts +# + +# FAI server: +#fai_logserver="$(hostname -f)" + +# FAI system user: +#fai_loguser='fai' + +# APT mirror to be used... +#mirrorurl=http://deb.debian.org/debian + +#... or alternatively, an 'apt-cacher-ng' on the gateway IP: +#mirrorurl=http://10.0.0.1:3142/debian + +# If e.g. 'apt-cacher-ng' is running on the gateway and should be used for installation +# as a http proxy, then... +#http_proxy=http://10.0.0.1:3142 +#ftp_proxy=http://10.0.0.1:3142 + +# ...or alternatively, if squid-deb-proxy is running on the faiserver. +#http_proxy="http://faiserver:8000" +#ftp_proxy="http://faiserver:8000" + +# Where to place tftp config folders/files... (default: /srv/tftp) +#tftpdir=/srv/tftp + +# List of Debian versions (as codenames) to build FAI installers for (default: same codename +# as the FAI installer host's Debian version). +#codenames="bullseye bookworm" + +# For generating the default boot entry in iPXE boot menu (default: first name in codenames, see above) +#default_codename="bookworm" + +# FAI installation chroot architecture (default: auto-detected from the FAI installer host). +# +# If your FAI installer host is amd64 and you want to create i386 installer NFSROOTs then +# make sure to run dpkg --add-architecture i386 on the FAI installer host before running +# the 'debian-edu-faiinstall' script (otherwise, debootstrap will run as qemu-debootstrap +# and that will be reallllyyyy slow). +#archs="amd64 i386" + +# For generating the default boot entry in iPXE boot menu (default: first arch in archs, see above) +#default_arch="i386" + +# Password for the root account of FAI-installed devices (and for the installer chroot). +# Use '$ echo "yoursecrectpassword" | mkpasswd -m md5 -s' to create the pwhash. +# If not specified, the host's root password will be used... +#rootpw='<pwhash-for-root-account>' + +# For a local user account that can get created +# Use '$ echo "yoursecrectpassword" | mkpasswd -m md5 -s' to create the pwhash. +# If not specified, no local user account will be added to the FAI-installed system. +#localuser='<localuser>' +#localuserpw='<pwhash-for-localuser-account>' + +# In case you want to provision FAI installed devices +# with system wide WiFi settings. +# Leave uncomment if you don't want to setup WiFi via FAI. +#wifi_essid='<edu-essid>' +#wifi_passphrase='<edu-wifi-passphrase-in-cleartext-sorry>' + +# school tag (short name for school) +#school_tag='SKOLE' |
