-
Notifications
You must be signed in to change notification settings - Fork 144
/
debian.sh
170 lines (134 loc) · 5.12 KB
/
debian.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
#!/bin/bash
#
# Debian specific functions
#
# (c) 2008-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"
return "$EXITCODE"
}
# generate_new_ramdisk "NIL"
generate_new_ramdisk() {
if [ -n "$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
# apparently sometimes the mdadm assembly bugfix introduced with the recent mdadm release does not work
# however, the problem is limited to H8SGL boards
# see https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=784070
if [ "$MBTYPE" = 'H8SGL' ]; then
local script="$FOLD/hdd/usr/share/initramfs-tools/scripts/local-block/mdadmpatch"
cp "$SCRIPTPATH/h8sgl-deb8-md.sh" "$script"
chmod a+x "$script"
fi
# just make sure that we do not accidentally try to install a bootloader
# when we haven't configured grub yet
# Debian won't install a boot loader anyway, but display an error message,
# that needs to be confirmed
sed -i "s/do_bootloader = yes/do_bootloader = no/" "$FOLD/hdd/etc/kernel-img.conf"
# 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=$?
return "$EXITCODE"
fi
}
#
# Generate the GRUB bootloader configuration.
#
generate_config_grub() {
declare -i EXITCODE=0
local grubdefconf="$FOLD/hdd/etc/default/grub"
# 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"
fi
if has_threadripper_cpu; then
grub_linux_default+=' pci=nommconf'
fi
if [ "$SYSARCH" == "arm64" ]; then
grub_linux_default+=' console=ttyAMA0 console=tty0'
fi
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}\"/"
rm "$FOLD/hdd/boot/grub/grub.cfg"
if [ "$UEFI" -eq 1 ]; then
execute_chroot_command "echo 'set grub2/update_nvram false' | debconf-communicate -f noninteractive"
execute_chroot_command "echo 'set grub2/force_efi_extra_removable true' | debconf-communicate -f noninteractive"
fi
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"
execute_chroot_command "grub-install --target=${efi_target} --efi-directory=${efi_dir} ${efi_grub_options} 2>&1"
declare -i EXITCODE=$?
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
if ((IMG_VERSION >= 70)); 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
delete_grub_device_map
return "$EXITCODE"
}
delete_grub_device_map() {
[ -f "$FOLD/hdd/boot/grub/device.map" ] && rm "$FOLD/hdd/boot/grub/device.map"
}
#
# 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 hetzner_lamp_install; then
setup_hetzner_lamp || return 1
fi
[[ -e "$FOLD/hdd/var/spool/exim4/input" ]] && find "$FOLD/hdd/var/spool/exim4/input" -type f -delete
disable_resume
return 0
}
debian_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