5c7be4e777a920f327931cab7d82a57050eeb2dd
[automated-distro-installer] / fai / config / hooks / instsoft.DEFAULT
1 #!/bin/bash
2
3 # These are things we can do before package_config packages get installed.
4
5 # exit for any vm except demohost, or if we are doing a dirinstall
6 if ifclass VM && ! ifclass demohost || ifclass VOL_BULLSEYE_BOOTSTRAP || [[ ! $FAI_ACTION || $FAI_ACTION = dirinstall ]]; then
7 exit 0
8 fi
9
10 if ifclass FSF; then
11 exit 0
12 fi
13
14 keyfile=/var/lib/fai/config/distro-install-common/luks/host-$HOSTNAME
15 f=$target/root/keyscript
16 cat > $f <<EOFOUTER
17 #!/bin/sh
18 cat <<'EOF'
19 $(cat $keyfile)
20 EOF
21 EOFOUTER
22 chmod 700 $f
23
24
25 # for hosts which don't have these data volumes, copy the specific
26 # files we need.
27 if ifclass demohost; then
28 files=(/var/lib/fai/config/distro-install-common/luks/host-demohost)
29 elif ifclass tp; then
30 files=(/var/lib/fai/config/distro-install-common/luks/host-tp)
31 fi
32 if [[ ${files[0]} ]]; then
33 d=$target/q/root/luks
34 mkdir -p $d
35 chmod 700 $d
36 cp -p ${files[@]} $d
37 fi
38
39
40 #### This bit is duplicated in rootsshsync, except we skip
41 #### update-initramfs and add $target
42 ####
43 # We generally shouldn't need this, because we don't ssh in on the 1st
44 # reboot since we initially embed the luks key, and with distro-begin,
45 # we run rootsshsync around the same time as we remove it. However, it
46 # could be helpful in case of problems.
47
48 auth_dir=$target/etc/dropbear/initramfs/
49 candidate=$(apt-cache policy dropbear-initramfs | awk '$1 == "Candidate:" { print $2 }' | head -n1 ||:)
50 if [[ $candidate ]] && dpkg --compare-versions "$candidate" lt 2020.81-4; then
51 auth_dir=$target/etc/dropbear-initramfs
52 fi
53 auth_file=$auth_dir/authorized_keys
54 mkdir -p $auth_dir
55 if [[ ! -e $auth_file ]] || ! diff -q /root/.ssh/authorized_keys $auth_file; then
56 cp -p /root/.ssh/authorized_keys $auth_file
57 fi