-
Notifications
You must be signed in to change notification settings - Fork 141
/
rockylinux.sh
147 lines (123 loc) · 4.21 KB
/
rockylinux.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
#!/bin/bash
#
# Rocky Linux specific functions
#
# (c) 2021, Hetzner Online GmbH
#
# generate_config_mdadm "NIL"
generate_config_mdadm() {
if [ -n "$1" ]; then
local mdadmconf="/etc/mdadm.conf"
{
echo "DEVICE partitions"
echo "MAILADDR root"
} > "$FOLD/hdd$mdadmconf"
execute_chroot_command "mdadm --examine --scan >> $mdadmconf"; declare -i EXITCODE=$?
return $EXITCODE
fi
}
# generate_new_ramdisk "NIL"
generate_new_ramdisk() {
if [ -n "$1" ]; then
# pick the latest kernel
VERSION="$(find "$FOLD/hdd/boot/" -name "vmlinuz-*" | cut -d '-' -f 2- | sort -V | tail -1)"
blacklist_unwanted_and_buggy_kernel_modules
configure_kernel_modules
local dracutfile="$FOLD/hdd/etc/dracut.conf.d/99-$C_SHORT.conf"
{
echo "### $COMPANY - installimage"
echo 'add_dracutmodules+=" lvm mdraid "'
echo 'add_drivers+=" raid0 raid1 raid10 raid456 "'
#echo 'early_microcode="no"'
echo 'hostonly="no"'
echo 'hostonly_cmdline="no"'
echo 'lvmconf="yes"'
echo 'mdadmconf="yes"'
echo 'persistent_policy="by-uuid"'
} > "$dracutfile"
execute_chroot_command "dracut -f --kver $VERSION"
declare -i EXITCODE=$?
return "$EXITCODE"
fi
}
#
# generate_config_grub <version>
#
# Generate the GRUB bootloader configuration.
#
generate_config_grub() {
[ -n "$1" ] || return
# we should not have to do anything, as grubby (new-kernel-pkg) should have
# already generated a grub.conf
# even though grub2-mkconfig will generate a device.map on the fly, the
# anaconda installer still creates this
DMAPFILE="$FOLD/hdd/boot/grub2/device.map"
[ -f "$DMAPFILE" ] && rm "$DMAPFILE"
local -i i=0
for ((i=1; i<=COUNT_DRIVES; i++)); do
local j; j="$((i - 1))"
local disk; disk="$(eval echo "\$DRIVE$i")"
echo "(hd$j) $disk" >> "$DMAPFILE"
done
debug '# device map:'
cat "$DMAPFILE" | debugoutput
local elevator=''
if is_virtual_machine; then
elevator='elevator=noop'
fi
local grub_cmdline_linux='biosdevname=0 crashkernel=auto'
is_virtual_machine && grub_cmdline_linux+=' elevator=noop'
(( USE_KERNEL_MODE_SETTING == 0 )) && grub_linux_default+=' nomodeset'
grub_cmdline_linux+=' rd.auto=1 consoleblank=0'
if has_threadripper_cpu; then
grub_cmdline_linux+=' pci=nommconf'
fi
if [ "$SYSARCH" == "arm64" ]; then
grub_cmdline_linux+=' console=ttyAMA0 console=tty0'
fi
sed -i "s/GRUB_CMDLINE_LINUX=.*/GRUB_CMDLINE_LINUX=\"$grub_cmdline_linux\"/" "$FOLD/hdd/etc/default/grub"
if ((IMG_VERSION > 85)) && ((IMG_VERSION <= 92)) && [[ -z "$GRUB_DEFAULT_OVERRIDE" ]]; then
GRUB_DEFAULT_OVERRIDE='saved'
fi
if [[ -n "$GRUB_DEFAULT_OVERRIDE" ]]; then sed -i "s/^GRUB_DEFAULT=.*/GRUB_DEFAULT=$GRUB_DEFAULT_OVERRIDE/" "$FOLD/hdd/etc/default/grub"; fi
rm -f "$FOLD/hdd/boot/grub2/grub.cfg"
if [ "$UEFI" -eq 1 ]; then
execute_chroot_command "grub2-mkconfig -o /boot/efi/EFI/rocky/grub.cfg 2>&1"; declare -i EXITCODE="$?"
else
execute_chroot_command "grub2-mkconfig -o /boot/grub2/grub.cfg 2>&1"; declare -i EXITCODE="$?"
fi
uuid_bugfix
return "$EXITCODE"
}
write_grub() {
if [ "$UEFI" -eq 1 ]; then
# we must NOT use grub2-install here. This will replace the prebaked
# grubx64.efi (which looks for grub.cfg in ESP) with a new one, which
# looks for in in /boot/grub2 (which may be more difficult to read)
rm -f "$FOLD/hdd/boot/grub2/grubenv"
execute_chroot_command "ln -s /boot/efi/EFI/rocky/grubenv /boot/grub2/grubenv"
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 "grub2-install --no-floppy --recheck $disk 2>&1"
declare -i EXITCODE=$?
fi
done
fi
return "$EXITCODE"
}
#
# 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
# selinux autorelabel if enabled
egrep -q "SELINUX=(enforcing|permissive)" "$FOLD/hdd/etc/sysconfig/selinux" &&
touch "$FOLD/hdd/.autorelabel"
return 0
}
# vim: ai:ts=2:sw=2:et