-
Notifications
You must be signed in to change notification settings - Fork 141
/
ubuntu.sh
228 lines (186 loc) · 6.9 KB
/
ubuntu.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
#!/bin/bash
#
# Ubuntu specific functions
#
# (c) 2007-2021, Hetzner Online GmbH
#
# generate_config_mdadm "NIL"
generate_config_mdadm() {
local mdadmconf="/etc/mdadm/mdadm.conf"
execute_chroot_command "/usr/share/mdadm/mkconf > $mdadmconf"; declare -i EXITCODE=$?
#
# Enable mdadm
#
local mdadmdefconf="$FOLD/hdd/etc/default/mdadm"
sed -i "s/AUTOCHECK=false/AUTOCHECK=true # modified by installimage/" \
"$mdadmdefconf"
sed -i "s/AUTOSTART=false/AUTOSTART=true # modified by installimage/" \
"$mdadmdefconf"
sed -i "s/START_DAEMON=false/START_DAEMON=true # modified by installimage/" \
"$mdadmdefconf"
sed -i -e "s/^INITRDSTART=.*/INITRDSTART='all' # modified by installimage/" \
"$mdadmdefconf"
if [ -f "$FOLD/hdd/etc/initramfs-tools/conf.d/mdadm" ]; then
sed -i "s/BOOT_DEGRADED=false/BOOT_DEGRADED=true # modified by installimage/" \
"$FOLD/hdd/etc/initramfs-tools/conf.d/mdadm"
fi
return "$EXITCODE"
}
# generate_new_ramdisk "NIL"
generate_new_ramdisk() {
if [ "$1" ]; then
local outfile; outfile=$(find "$FOLD/hdd/boot" -name "initrd.img-*" -not -regex ".*\(gz\|bak\)" -printf "%f\n" | sort -nr | head -n1)
local kvers; kvers=$(echo "$outfile" |cut -d "-" -f2-)
debug "# Kernel Version found: $kvers"
blacklist_unwanted_and_buggy_kernel_modules
configure_kernel_modules
if [ "$CRYPT" = 1 ]; then
debug "# Enabling dm-crypt on chroot system"
echo "dm-crypt" >> "$FOLD/hdd/etc/modules"
fi
# just make sure that we do not accidentally try to install a bootloader
# when we haven't configured grub yet
if [[ -e "$FOLD/hdd/etc/kernel-img.conf" ]]; then
sed -i "s/do_bootloader = yes/do_bootloader = no/" "$FOLD/hdd/etc/kernel-img.conf"
fi
# well, we might just as well update all initramfs and stop findling around
# to find out which kernel version is the latest
execute_chroot_command "update-initramfs -u -k $kvers"; EXITCODE=$?
# re-enable updates to grub
if [[ -e "$FOLD/hdd/etc/kernel-img.conf" ]]; then
sed -i "s/do_bootloader = no/do_bootloader = yes/" "$FOLD/hdd/etc/kernel-img.conf"
fi
return $EXITCODE
fi
}
#
# generate_config_grub <version>
#
# Generate the GRUB bootloader configuration.
#
generate_config_grub() {
declare -i EXITCODE=0
local grubdefconf="$FOLD/hdd/etc/default/grub"
local grubconfdir="$FOLD/hdd/etc/default/grub.d"
# this shold not be necessary anymore
# ubuntu_grub_fix
# execute_chroot_command "cd /boot; [ -e boot ] && rm -rf boot; ln -s . boot >> /dev/null 2>&1"
# set linux_default in grub
local grub_linux_default=''
(( USE_KERNEL_MODE_SETTING == 0 )) && grub_linux_default+='nomodeset '
grub_linux_default+='consoleblank=0'
if is_virtual_machine; then
grub_linux_default="${grub_linux_default} elevator=noop"
else
if [ "$IMG_VERSION" -eq 1404 ]; then
grub_linux_default="${grub_linux_default} intel_pstate=enable"
fi
fi
# H8SGL need workaround for iommu
if [ "$MBTYPE" = 'H8SGL' ] && [ "$IMG_VERSION" -ge 1404 ] ; then
grub_linux_default="${grub_linux_default} iommu=noaperture"
fi
if [ "$IMG_VERSION" -ge 1604 ] && [ "$IMG_VERSION" -lt 1710 ]; then
grub_linux_default="${grub_linux_default} net.ifnames=0"
fi
if has_threadripper_cpu; then
grub_linux_default+=' pci=nommconf'
fi
if [ "$SYSARCH" == "arm64" ]; then
grub_linux_default+=' console=ttyAMA0 console=tty0'
fi
if [ -d "$grubconfdir" ]; then
# this needs to end in .cfg, otherwise grub-mkconfig will not read it"
grubdefconf="$grubconfdir/hetzner.cfg"
{
echo "GRUB_HIDDEN_TIMEOUT_QUIET=false"
echo "GRUB_CMDLINE_LINUX_DEFAULT=\"${grub_linux_default}\""
} >> "$grubdefconf"
else
sed -i "$grubdefconf" -e "s/^GRUB_HIDDEN_TIMEOUT=.*/GRUB_HIDDEN_TIMEOUT=5/" -e "s/^GRUB_HIDDEN_TIMEOUT_QUIET=.*/GRUB_HIDDEN_TIMEOUT_QUIET=false/"
sed -i "$grubdefconf" -e "s/^GRUB_CMDLINE_LINUX_DEFAULT=.*/GRUB_CMDLINE_LINUX_DEFAULT=\"${grub_linux_default}\"/"
fi
{
echo ""
echo "# only use text mode - other modes may scramble screen"
echo 'GRUB_GFXPAYLOAD_LINUX="text"'
} >> "$grubdefconf"
if [ "$UEFI" -eq 1 ]; then
# ubuntu always installs to removable path as well (which is what we want)
# unless grub2/no_efi_extra_removable is set to true
execute_chroot_command "echo 'set grub2/update_nvram false' | debconf-communicate -f noninteractive"
fi
# create /run/lock if it didn't exist because it is needed by grub-mkconfig
mkdir -p "$FOLD/hdd/run/lock"
execute_chroot_command "grub-mkconfig -o /boot/grub/grub.cfg 2>&1"
if [ "$UEFI" -eq 1 ]; then
local efi_target="${SYSARCH}-efi"
local efi_dir="/boot/efi"
local efi_grub_options="--no-floppy --no-nvram --removable --no-uefi-secure-boot"
# if/after installing grub-efi-amd64-signed, this will always install the "static" grubx64.efi
execute_chroot_command "grub-install --target=${efi_target} --efi-directory=${efi_dir} ${efi_grub_options} 2>&1"
declare -i EXITCODE=$?
local shimdir="$FOLD/hdd/usr/lib/shim"
if [ -d "$shimdir" ]; then
mkdir -p "$FOLD/hdd/boot/efi/EFI/ubuntu"
for b in "$shimdir/"*; do
[[ -e "$b" ]] && cp -r "$b" "$FOLD/hdd/boot/efi/EFI/ubuntu/"
done
fi
else
# only install grub2 in mbr of all other drives if we use swraid
for ((i=1; i<=COUNT_DRIVES; i++)); do
if [ "$SWRAID" -eq 1 ] || [ "$i" -eq 1 ] ; then
local disk; disk="$(eval echo "\$DRIVE$i")"
execute_chroot_command "grub-install --no-floppy --recheck $disk 2>&1"
fi
done
fi
((IMG_VERSION >= 2204)) && debconf_reset_grub_install_devices
if ((IMG_VERSION >= 1604)); then
debconf_set_grub_install_devices #|| return 1
fi
uuid_bugfix
PARTNUM=$(echo "$SYSTEMBOOTDEVICE" | rev | cut -c1)
if [ "$SWRAID" = "0" ]; then
PARTNUM="$((PARTNUM - 1))"
fi
return "$EXITCODE"
}
disable_ttyvtdisallocate() {
# TTYVTDisallocate=yes may seriously mess up the login screen
mkdir -p "$FOLD/hdd/etc/systemd/system/getty@tty1.service.d"
{
echo "### $COMPANY installimage"
echo
echo '[Service]'
echo 'TTYVTDisallocate=no'
} > "$FOLD/hdd/etc/systemd/system/getty@tty1.service.d/override.conf"
}
#
# os specific functions
# for purpose of e.g. debian-sys-maint mysql user password in debian/ubuntu LAMP
#
run_os_specific_functions() {
randomize_mdadm_array_check_time
if nextcloud_install; then
setup_nextcloud || return 1
fi
((IMG_VERSION >= 1804)) && disable_ttyvtdisallocate
disable_resume
return 0
}
ubuntu_grub_fix() {
local mapper="$FOLD/hdd/dev/mapper"
local tempfile="$FOLD/hdd/tmp/mapper.tmp"
ls -l "$mapper" > "$tempfile"
grep -v "total" "$tempfile" | grep -v "crw" | while read -r line; do
local dmdevice volgroup
volgroup=$(echo "$line" | cut -d " " -f9)
dmdevice=$(echo "$line" | cut -d "/" -f2)
rm "$mapper/$volgroup"
cp -R "$FOLD/hdd/dev/$dmdevice" "$mapper/$volgroup"
done
rm "$tempfile"
}
# vim: ai:ts=2:sw=2:et