X-Git-Url: https://iankelling.org/git/?a=blobdiff_plain;f=fai%2Fconfig%2Fclass%2F50-host-classes;h=0e16c0e98ebf82281aaa8093d04657210c394978;hb=ffbf3d9d64f9846be1151da6dd8a13f471795e55;hp=8fc4cfbb00eb96f9c36a2f07ddca068fad1c8ad6;hpb=bfd6bbd3a188aac6871f8b5e1116a0979682d52b;p=automated-distro-installer diff --git a/fai/config/class/50-host-classes b/fai/config/class/50-host-classes index 8fc4cfb..0e16c0e 100755 --- a/fai/config/class/50-host-classes +++ b/fai/config/class/50-host-classes @@ -67,6 +67,10 @@ echo FAIBASE STANDARD DEBIAN # os into a multi-os system, if we see some basic hueristics, like the # right amount of them. This overrides that. # +# REROOTFS: Don't reuse the root filesystem, even if we normally would +# +# NOWIPE: use existing subvolumes if they exist +# # PARTITION_PROMPT: If we don't see partitions to reuuse, prompt # to make sure we really want to repartition and use a completely # fresh install. I use this in case our repartition check has @@ -75,9 +79,12 @@ echo FAIBASE STANDARD DEBIAN # ROTATIONAL: in a system with ssd and hdd, install to the hdd # instead of the default ssd. # -# RAID0: Use raid 0 even if there are >= 4 disks with boot partititions. +# RAID0: Use raid 0 even if there are >= 4 disks with boot partitions. # # LINODE: For running a vm on linode, especially one created with fai-cd. +# +# IANK / FSF: general setup of my machine vs FSF machines +# NABIA_EXTRA: extra repos for NABIA from other distros if [[ -e /a/bin/fai/fai-wrapper ]]; then @@ -124,6 +131,8 @@ exit 0 # It's a noop until we replace _ with host names. #!/bin/bash + +echo IANK if [[ ! -e /a/bin/fai/fai-wrapper || $FAI_ACTION == dirinstall ]]; then case $HOSTNAME in # bullseye based minimal recovery / bootstraping os: @@ -133,7 +142,9 @@ if [[ ! -e /a/bin/fai/fai-wrapper || $FAI_ACTION == dirinstall ]]; then # etiona _) echo UBUNTU ETIONA64 VOL_ETIONA ETIONA ;; # nabia - _) echo UBUNTU NABIA64 VOL_NABIA NABIA ;; + _) echo UBUNTU NABIA64 VOL_NABIA NABIA NABIA_EXTRA ;; + # aramo + _) echo UBUNTU ARAMO64 VOL_ARAMO ARAMO ARAMO_EXTRA ;; # stretch _) echo STRETCH64 VOL_STRETCH STRETCH_NONFREE ;; # buster @@ -150,6 +161,8 @@ if [[ ! -e /a/bin/fai/fai-wrapper || $FAI_ACTION == dirinstall ]]; then _) echo UBUNTU BIONIC64 VOL_BIONIC BIONIC ;; # focal _) echo UBUNTU FOCAL64 VOL_FOCAL FOCAL ;; + # jammy + _) echo UBUNTU JAMMY64 VOL_JAMMY JAMMY ;; esac fi ###### end Template for 51-multi-boot ######