X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/m1-debian/blobdiff_plain/fb2efba40d90ec1d3b39c4f4d266013bca180101..076a268284d55cfd1735fc718903f064a986f110:/files/rc.local diff --git a/files/rc.local b/files/rc.local index 0676911..22d1f24 100755 --- a/files/rc.local +++ b/files/rc.local @@ -136,8 +136,9 @@ unless (-f '/boot/grub/grub.cfg') { system("resize2fs $root_block_device"); $initial_root_fs_uuid = find_fs_uuid_of_device($root_block_device); $efi_block_device = find_efi_parition($initial_root_fs_uuid); - $efi_fs_uuid = find_fs_uuid_of_device($efi_block_device); + system("mlabel -s -n :: -i $efi_block_device"); system("tune2fs -U random ${root_block_device}"); + $efi_fs_uuid = find_fs_uuid_of_device($efi_block_device); $final_root_fs_uuid = find_fs_uuid_of_device($root_block_device); generate_fstab($final_root_fs_uuid, $efi_fs_uuid); system('mount /boot/efi');