Actions
action #73465
closed/etc/default/grub missed if rootfs<>btrfs
Description
Wegen einen Tippfehler (grub2.nobtrfs statt grub.nobtrfs) bleibt die Datei /etc/defaults/grub leer, deswegen fehlen im grub2.cfg manche Sachen.
Updated by EDV_Lotse almost 4 years ago
- % Done changed from 0 to 90
- grub2.nobtrfs ==> grub.nobtrfs
- /etc/default/grub.zfs
- Modify check-Script:
A)
rootfs=cat /etc/fstab | grep "/\s"|tr -s " "|cut -d " " -f3
==>
rootfs=mount | grep "/\s" | tr -s " " | cut -d " " -f5
B)
if [[ $rootfs == "btrfs" ]]
...
==>
case $rootfs in
...
Actions