various fixes, data subvols changed, mostly handled elsewhere now
[automated-distro-installer] / fai / config / scripts / GRUB_PC / 11-ian
1 #!/bin/bash -x
2
3 set -eE -o pipefail
4 trap 'echo "$0:$LINENO:error: \"$BASH_COMMAND\" returned $?" >&2' ERR
5
6 if [[ $EUID != 0 ]]; then
7 echo "$0: error: expected to be root."
8 exit 1
9 fi
10
11 if ! type -t fcopy &>/dev/null; then
12 sudo apt-get -y install fai-client
13 fi
14
15 chroot $FAI_ROOT bash <<'EOFOUTER'
16 if getent group systemd-journal >/dev/null; then
17 # makes the journal be saved to disk.
18 mkdir -p /var/log/journal
19 chmod 755 /var/log/journal
20 fi
21 debconf-set-selections <<EOF
22 kexec-tools kexec-tools/load_kexec boolean false
23 EOF
24 apt-get install -y pxe-kexec
25 EOFOUTER
26
27 # note: # fcopy -i = ignore nonmatching class error, always return 0.
28 # this is also done by FABASE/10-misc by default.
29 fcopy -ir /root
30 if ifclass STABLE_BOOTSTRAP; then
31 fcopy -ri /etc/systemd/system
32 chroot $FAI_ROOT bash <<'EOFOUTER'
33 systemctl enable fai_check.service
34 EOFOUTER
35 exit 0
36 fi
37
38 dir=/q/root/shadow
39 fai_shadow=$FAI/distro-install-common/shadow
40 if [[ ! -e $dir && -e $fai_shadow ]]; then
41 mkdir -p $dir
42 mount -o bind $fai_shadow $dir
43 fi
44 $FAI/distro-install-common/end
45
46
47 # these get copied in an earlier stage by fai, but leaving it here since
48 # I run this as a single post-fai script to update things that have changed.
49 fcopy -ri /etc/apt/preferences.d
50 fcopy -ri /etc/apt/sources.list.d
51 $ROOTCMD apt-get update
52
53
54
55 rm -f $FAI_ROOT/etc/apt/sources.list
56
57 chroot $FAI_ROOT bash <<'EOF'
58 set -eE -o pipefail
59 mkdir -p /home/ian/.ssh
60 f=/root/.ssh/authorized_keys
61 if [[ -e $f ]]; then
62 cp $f /home/ian/.ssh
63 fi
64 chown -R 1000:1000 /home/ian/.ssh
65 chmod -R u=Xrw,og= /home/ian/.ssh
66 rm -rf /root/.ssh
67 cp -rL /home/ian/.ssh /root
68 chown -R root:root /root/.ssh
69 chmod 700 /root/.ssh
70
71
72 # default jessie groups + kvm, systemd-journal, adm
73 usermod -aG adm,cdrom,floppy,sudo,audio,dip,video,plugdev,netdev ian
74
75 if getent group systemd-journal >/dev/null; then
76 usermod -aG systemd-journal ian
77 fi
78 # https://askubuntu.com/questions/33416/how-do-i-disable-the-boot-splash-screen-and-only-show-kernel-and-boot-text-inst
79 # it suggests not having plymouth-theme-ubuntu-text, but
80 # making it not installed then kills plymouth, then makes
81 # the system not boot.
82 sed -ri 's/(^ *GRUB_CMDLINE_LINUX.*)quiet splash/\1/' /etc/default/grub
83 # on xenial, no grub is displayed at all. fix that.
84 # found just by noticing this in the config file, and a
85 # warning about it in error.log
86 sed -i '/^ *GRUB_HIDDEN_TIMEOUT/d' /etc/default/grub
87 update-grub2
88 EOF
89
90
91 # reading through the groups that ian is in but traci isn't,
92 for g in plugdev audio video cdrom; do
93 $ROOTCMD usermod -a -G $g traci
94 done