X-Git-Url: https://iankelling.org/git/?a=blobdiff_plain;f=fai%2Fconfig%2Fscripts%2FGRUB_PC%2F11-ian;h=8cd841f875cfc76af9e1393d19aa63cd610f29f9;hb=bdcc37dee90597b4a65c2ae24b9fc26f15adfc11;hp=3be239f424b1de99488e31aefaf555ef1a885adf;hpb=ec9227898fa68bd89de454c87bce8ea051a8d783;p=automated-distro-installer diff --git a/fai/config/scripts/GRUB_PC/11-ian b/fai/config/scripts/GRUB_PC/11-ian index 3be239f..8cd841f 100755 --- a/fai/config/scripts/GRUB_PC/11-ian +++ b/fai/config/scripts/GRUB_PC/11-ian @@ -8,47 +8,58 @@ if [[ $EUID != 0 ]]; then exit 1 fi -# note: -# fcopy -i = ignore nonmatching class error, always return 0. -fcopy -riM /root/.ssh +if ! type -t fcopy &>/dev/null; then + sudo apt-get -y install fai-client +fi chroot $FAI_ROOT bash <<'EOFOUTER' +if getent group systemd-journal >/dev/null; then + # makes the journal be saved to disk. + mkdir -p /var/log/journal + chmod 755 /var/log/journal +fi debconf-set-selections </dev/null; then - sudo apt-get -y install fai-client -fi -dir=/q/root/shadow -fai_shadow=$FAI/distro-install-common/shadow -if [[ ! -e $dir && -e $fai_shadow ]]; then - mkdir -p $dir - mount -o bind $fai_shadow $dir -fi -$FAI/distro-install-common/end - -if ifclass STABLE || ifclass LINODESTABLE; then - fcopy -M /etc/apt/preferences +src=$FAI/distro-install-common/shadow +dst=/q/root/shadow +if [[ ! -e $dst && -e $src ]]; then + # outside of fai context, we skip this + mkdir -p $dst + mount -o bind $src $dst fi -if ifclass DEBIAN; then - fcopy -M /etc/apt/preferences.d/unstable +if ifclass VOL_STABLE_BOOTSTRAP; then + fcopy -ri /etc/systemd/system + chroot $FAI_ROOT bash <<'EOFOUTER' +systemctl enable fai_check.service +EOFOUTER + exit 0 fi -fcopy -riM /etc/apt/sources.list.d -$ROOTCMD apt-get update +$FAI/distro-install-common/end +# these get copied in an earlier stage by fai, but leaving it here since +# I run this as a single post-fai script to update things that have changed. +fcopy -riB /etc/apt +# outside of fai, this seems to regularly lead to +# E: Could not get lock /var/lib/apt/lists/lock - open (11: Resource temporarily unavailable) +# so add a sleep. 1 sec is probably way more than needed. +sleep 1 +$ROOTCMD apt-get update -rm -f $FAI_ROOT/etc/apt/sources.list chroot $FAI_ROOT bash <<'EOF' set -eE -o pipefail @@ -70,9 +81,6 @@ usermod -aG adm,cdrom,floppy,sudo,audio,dip,video,plugdev,netdev ian if getent group systemd-journal >/dev/null; then usermod -aG systemd-journal ian - # makes the journal be saved to disk. - mkdir -p /var/log/journal - chmod 755 /var/log/journal fi # https://askubuntu.com/questions/33416/how-do-i-disable-the-boot-splash-screen-and-only-show-kernel-and-boot-text-inst # it suggests not having plymouth-theme-ubuntu-text, but @@ -91,4 +99,3 @@ EOF for g in plugdev audio video cdrom; do $ROOTCMD usermod -a -G $g traci done -