X-Git-Url: https://iankelling.org/git/?a=blobdiff_plain;f=fai%2Fconfig%2Fscripts%2FGRUB_PC%2F11-ian;h=6a55e4406455b436292444cba56a344a7705a23d;hb=4513744c21305718caaf0ebce22ec328c0367860;hp=a10efef37e185b42fd8e8a5d40c22b57a4b07a6c;hpb=0a2a4d11ef323da19d0cebe2f5ec7b1be7bd15bc;p=automated-distro-installer diff --git a/fai/config/scripts/GRUB_PC/11-ian b/fai/config/scripts/GRUB_PC/11-ian index a10efef..6a55e44 100755 --- a/fai/config/scripts/GRUB_PC/11-ian +++ b/fai/config/scripts/GRUB_PC/11-ian @@ -24,9 +24,12 @@ EOF apt-get install -y pxe-kexec EOFOUTER -# note: # fcopy -i = ignore nonmatching class error, always return 0. +# -r = recursive +# -i = ignore non-matching class warnings, always exit 0 +# -B = no backup files +fcopy -riB /boot # this is also done by FABASE/10-misc by default. -fcopy -ir /root +fcopy -riB /root if ifclass STABLE_BOOTSTRAP; then fcopy -ri /etc/systemd/system chroot $FAI_ROOT bash <<'EOFOUTER' @@ -35,24 +38,34 @@ EOFOUTER exit 0 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 + +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 +# todo, port this over to the arch install script. +src=$FAI/distro-install-common/p/c/machine_specific/$HOSTNAME/filesystem/etc/ssh +dst=/target/etc/ssh +if [[ -e $src && -e $dst ]]; then + # outside of fai context, we skip this + cp -rT $src fi -$FAI/distro-install-common/end +$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 -ri /etc/apt/preferences.d -fcopy -ri /etc/apt/sources.list.d +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 +fcopy -riB /etc/ssh chroot $FAI_ROOT bash <<'EOF' set -eE -o pipefail