X-Git-Url: https://iankelling.org/git/?a=blobdiff_plain;f=fai%2Fconfig%2Fhooks%2Finstsoft.DEFAULT;h=8e9c7e579a915d9d59958cf5e49efe4d6ac18d4c;hb=cef9b6ede5c1e028bed1b4dc7895f5dfa121ad6b;hp=11620eb192454be9ba006e154f95e00d5994e032;hpb=4261ad7e021ec77e7198cf42c3576dad07f12a64;p=automated-distro-installer diff --git a/fai/config/hooks/instsoft.DEFAULT b/fai/config/hooks/instsoft.DEFAULT index 11620eb..8e9c7e5 100755 --- a/fai/config/hooks/instsoft.DEFAULT +++ b/fai/config/hooks/instsoft.DEFAULT @@ -1,8 +1,10 @@ #!/bin/bash -# exit for any vm which is not our test vm -if ifclass VM && ! ifclass demohost; then - exit 0 +# These are things we can do before package_config packages get installed. + +# exit for any vm except demohost, or if we are doing a dirinstall +if ifclass VM && ! ifclass demohost || ifclass VOL_STRETCH_BOOTSTRAP || [[ ! $FAI_ACTION || $FAI_ACTION = dirinstall ]]; then + exit 0 fi keyfile=/var/lib/fai/config/distro-install-common/luks/host-$HOSTNAME @@ -13,30 +15,30 @@ cat <<'EOF' $(cat $keyfile) EOF EOFOUTER -chmod +x $f +chmod 700 $f -f=$target/root/keyscript-manual -cat >$f <<'EOF' -#!/bin/sh -if ! [ -e /tmp/key ]; then - stty -echo - read pass - printf '%s' "$pass" > /tmp/key +# for hosts which don't have these data volumes, copy the specific +# files we need. +if ifclass demohost; then + files=(/var/lib/fai/config/distro-install-common/luks/host-demohost) +elif ifclass tp; then + files=(/var/lib/fai/config/distro-install-common/luks/host-tp) +fi +if [[ ${files[0]} ]]; then + d=$target/q/root/luks + mkdir -p $d + chmod 700 $d + cp -p ${files[@]} $d fi -cat /tmp/key -EOF -chmod +x $f -if ifclass tp; then - d=$target/q/root/shadow - mkdir -p $d - # ls -la /var/lib/fai/config/distro-install-common - cp /var/lib/fai/config/distro-install-common/traci{,-simple} $d - chmod -R o-rwx $d - d=$target/q/root/luks - mkdir -p $d - cp /var/lib/fai/config/distro-install-common/host-{tp,demohost} $d - chmod -R o-rwx $d -fi +#### this bit is duplicated in rootsshsync +f=/var/lib/fai/config/files/root/.ssh/authorized_keys/STANDARD +d=$target/etc/initramfs-tools +d2=$target/etc/dropbear-initramfs +mkdir -p $d/root/.ssh $d2 +chmod 700 $d/root $d/root/.ssh +# i think buster uses the second, flidas uses the first. +cp -p $f $d/root/.ssh/authorized_keys +cp -p $f $d2/authorized_keys