9f0c56e19acff9db9037a048abdd01c125564950
[automated-distro-installer] / fai / config / scripts / GRUB_PC / 11-iank
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 set -eE -o pipefail
17 if getent group systemd-journal >/dev/null; then
18 # makes the journal be saved to disk.
19 mkdir -p /var/log/journal
20 chmod 755 /var/log/journal
21 fi
22 debconf-set-selections <<EOF
23 kexec-tools kexec-tools/load_kexec boolean false
24 EOF
25 apt-get install -y pxe-kexec
26 EOFOUTER
27
28 # -r = recursive
29 # -i = ignore non-matching class warnings, always exit 0
30 # -B = no backup files
31 fcopy -riBM /boot
32 # this is also done by FABASE/10-misc by default.
33 fcopy -riBM /root
34
35
36 src=$FAI/distro-install-common/shadow
37 dst=/q/root/shadow
38 if [[ ! -e $dst && -e $src ]]; then
39 # outside of fai context, we skip this
40 mkdir -p $dst
41 mount -o bind $src $dst
42 fi
43
44 $FAI/distro-install-common/end
45 if ifclass VOL_STRETCH_BOOTSTRAP; then
46 fcopy -riM /etc/systemd/system
47 chroot $FAI_ROOT bash <<'EOFOUTER'
48 systemctl enable fai_check.service
49 EOFOUTER
50 exit 0 # avoid unnecessary stuff in bootstrap vol
51 fi
52
53
54 # these get copied in an earlier stage by fai, but leaving it here since
55 # I run this as a single post-fai script to update things that have changed.
56 fcopy -riBM /etc/apt
57 # outside of fai, this seems to regularly lead to
58 # E: Could not get lock /var/lib/apt/lists/lock - open (11: Resource temporarily unavailable)
59 # so add a sleep. 1 sec is probably way more than needed.
60 sleep 1
61 f=$FAI_ROOT/var/cache/apt/pkgcache.bin
62 if [[ ! -r $f ]] || (( $(( $(date +%s) - $(stat -c %Y $f ) )) > 60*60*2 )); then
63 $ROOTCMD apt-get update
64 fi
65
66
67 chroot $FAI_ROOT bash <<'EOF'
68 #### begin .ssh setup ###
69 set -eE -o pipefail
70 mkdir -p /home/iank/.ssh
71 f=/root/.ssh/authorized_keys
72 if [[ -e $f ]]; then
73 cp $f /home/iank/.ssh
74 fi
75 chown -R 1000:1000 /home/iank/.ssh
76 chmod -R u=Xrw,og= /home/iank/.ssh
77 rm -rf /root/.ssh
78 # remove broken symlinks or the following cp will fail
79 find /home/iank/.ssh -xtype l -exec rm '{}' \;
80 cp -rL /home/iank/.ssh /root
81 chown -R root:root /root/.ssh
82 chmod 700 /root/.ssh
83 #### end .ssh setup ###
84
85 # this is needed to enable resolvconf, making /etc/resolv.conf be a symlink.
86 # why? i dun know, it\'s really dumb.
87 dpkg-reconfigure -fnoninteractive resolvconf
88
89 # default jessie groups + kvm, systemd-journal, adm
90 for g in adm cdrom floppy sudo audio dip video plugdev netdev; do
91 if getent gropu $g >/dev/null; then
92 usermod -aG $g iank
93 fi
94 done
95
96 if getent group systemd-journal >/dev/null; then
97 usermod -aG systemd-journal iank
98 fi
99
100
101 # this is usefull. Only thing reason I see this being disabled by default is
102 # that a normal user can disrupt the system, eg cause a reboot.
103 sed -i '$a kernel.sysrq=1
104 /^kernel.sysrq=/d' /etc/sysctl.conf
105 EOF
106
107
108 if [[ $FAI_ACTION != dirinstall ]]; then
109
110
111 if ifclass LINODE; then
112 speed=19200
113 # luks.crypttab=no see man systemd-cryptsetup-generator
114 cmdline="luks.crypttab=no console=ttyS0,${speed}n8"
115 else
116 speed=115200
117 cmdline="luks.crypttab=no console=ttyS0,${speed} console=tty0"
118 fi
119
120 cat >$FAI_ROOT/etc/grub.d/40_custom <<EOF
121 #!/bin/sh
122 exec tail -n +3 \$0
123 # This file provides an easy way to add custom menu entries. Simply type the
124 # menu entries you want to add after this comment. Be careful not to change
125 # the 'exec tail' line above.
126
127 # https://www.coreboot.org/Serial_console # tty
128 # but removed unneeded stuff
129
130 serial --speed=$speed
131 terminal_input --append serial
132 terminal_output --append serial
133 EOF
134
135
136 chroot $FAI_ROOT bash <<EOF
137 set -eE -o pipefail
138 # https://askubuntu.com/questions/33416/how-do-i-disable-the-boot-splash-screen-and-only-show-kernel-and-boot-text-inst
139 # we remove quiet and splash, and all thats left is what we want
140
141 if grep -qF "$cmdline" /etc/default/grub; then
142 # already set things, exit
143 exit 0
144 fi
145 sed -ri 's/^ *GRUB_CMDLINE_LINUX_DEFAULT=.*/GRUB_CMDLINE_LINUX_DEFAULT="$cmdline"/' /etc/default/grub
146 # on xenial, no grub is displayed at all. fix that.
147 # found just by noticing this in the config file, and a
148 # warning about it in error.log
149 sed -i '/^ *GRUB_HIDDEN_TIMEOUT/d' /etc/default/grub
150
151 update-grub2
152 EOF
153
154 if [[ ! FAI_WRAPPER ]]; then
155 chroot $FAI_ROOT bash <<EOF
156 # Just include all of them for now incase we are creating
157 # an install for a different machine.. in distro-begin, we
158 # slim it down to whats used.
159 find /lib/modules/*/kernel/drivers/net /lib/modules/*/kernel/net -type f -name '*.ko' -printf "%f\n" | sed 's/.ko$//' | sort -u >/etc/initramfs-tools/modules
160 update-initramfs -u -k all
161 EOF
162 fi
163 fi
164
165
166 # reading through the groups that iank is in but user2 isn't,
167 for g in plugdev audio video cdrom; do
168 $ROOTCMD usermod -a -G $g user2
169 done