X-Git-Url: https://iankelling.org/git/?a=blobdiff_plain;f=fai%2Fconfig%2Fclass%2F50-host-classes;h=7de22876d58d69ca8c5b7decfb73d0a50f6f85db;hb=4abbc67ed68213ec94fcf5970d3e34661967a87c;hp=c62229f50a9a062f90512cabad166db9773b674a;hpb=f67d4b719356595b424aa3cd358abc79426583c5;p=automated-distro-installer diff --git a/fai/config/class/50-host-classes b/fai/config/class/50-host-classes index c62229f..7de2287 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,45 +79,13 @@ 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. - -###### begin Template for 51-multi-boot ###### # -# It has reasonable combinations of above classes. -# It's a noop until we replace _ with host names. +# IANK / FSF: general setup of my machine vs FSF machines +# NABIA_EXTRA: extra repos for NABIA from other distros -#!/bin/bash -if [[ ! -e /a/bin/fai/fai-wrapper || $FAI_ACTION == dirinstall ]]; then - case $HOSTNAME in - # bookworm - _) echo BOOKWORM64 VOL_BOOKWORM_BOOTSTRAP BOOKWORM_FREE ;; - # bullseye based minimal recovery / bootstraping os: - _) echo BULLSEYE64 VOL_BULLSEYE_BOOTSTRAP BULLSEYE_FREE ;; - # buster - _) echo BUSTER64 VOL_BUSTER_BOOTSTRAP BUSTER_FREE ;; - # flidas - _) echo UBUNTU FLIDAS64 VOL_FLIDAS FLIDAS ;; - # etiona - _) echo UBUNTU ETIONA64 VOL_ETIONA ETIONA ;; - # nabia - _) echo UBUNTU NABIA64 VOL_NABIA NABIA ;; - # stretch - _) echo STRETCH64 VOL_STRETCH STRETCH_FREE ;; - # buster - _) echo BUSTER64 VOL_BUSTER BUSTER_FREE ;; - # testing - _) echo STRETCH64 VOL_TESTING TESTING_FREE ;; - # xenial - _) echo UBUNTU XENIAL64 VOL_XENIAL XENIAL_FREE ;; - # bionic - _) echo UBUNTU BIONIC64 VOL_BIONIC BIONIC ;; - # focal - _) echo UBUNTU FOCAL64 VOL_FOCAL FOCAL ;; - esac -fi -###### end Template for 51-multi-boot ###### if [[ -e /a/bin/fai/fai-wrapper ]]; then source /a/bin/distro-functions/src/identify-distros @@ -149,3 +121,44 @@ if grep ^52:54:00: /sys/class/net/eth0/address &>/dev/null; then # if our eth0 mac is in the kvm range, we are a vm. echo "VM" fi + +exit 0 +### Below here is a comment of code, exit above is so it does not get executed ### + +###### begin Template for 51-multi-boot ###### +# +# It has reasonable combinations of above classes. +# 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: + _) echo BULLSEYE64 VOL_BULLSEYE_BOOTSTRAP BULLSEYE_FREE ;; + # flidas + _) echo UBUNTU FLIDAS64 VOL_FLIDAS FLIDAS ;; + # etiona + _) echo UBUNTU ETIONA64 VOL_ETIONA ETIONA ;; + # nabia + _) echo UBUNTU NABIA64 VOL_NABIA NABIA NABIA_EXTRA ;; + # stretch + _) echo STRETCH64 VOL_STRETCH STRETCH_NONFREE ;; + # buster + _) echo BUSTER64 VOL_BUSTER BUSTER_NONFREE ;; + # bullseye + _) echo BULLSEYE64 VOL_BULLSEYE BULLSEYE_NONFREE ;; + # bookworm + _) echo BOOKWORM64 VOL_BOOKWORM BOOKWORM_NONFREE ;; + # testing + _) echo BOOKWORM64 VOL_TESTING TESTING_NONFREE ;; + # xenial + _) echo UBUNTU XENIAL64 VOL_XENIAL XENIAL_FREE ;; + # bionic + _) echo UBUNTU BIONIC64 VOL_BIONIC BIONIC ;; + # focal + _) echo UBUNTU FOCAL64 VOL_FOCAL FOCAL ;; + esac +fi +###### end Template for 51-multi-boot ######