diff options
Diffstat (limited to '')
-rwxr-xr-x | bootstrap/install/install.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/bootstrap/install/install.sh b/bootstrap/install/install.sh index dfd7526e..01d727c4 100755 --- a/bootstrap/install/install.sh +++ b/bootstrap/install/install.sh @@ -100,10 +100,10 @@ msg "Creating swapfile..." msg2 "$(btrfs filesystem mkswapfile --size "$(free -m | awk '{if (NR==2) {printf "%sm\n", $2 + 500}}')" /mnt/swap/swapfile)"; msg "Finished creating swapfile!" msg "Important information:" -msg2 "Swapfile UUID is: " "$(findmnt -no UUID -T /mnt/swap/swapfile)"; -msg2 "Swapfile resume offset is: " "$(btrfs inspect-internal map-swapfile -r /mnt/swap/swapfile)"; -msg2 "Root-disk UUID is: " "$(lsblk -no UUID -T $DISK_ROOT)"; -msg2 "EFI-disk UUID is: " "$(lsblk -no UUID -T $DISK_EFI)"; +msg2 "Swapfile UUID is: $(findmnt -no UUID -T /mnt/swap/swapfile)"; +msg2 "Swapfile resume offset is: $(btrfs inspect-internal map-swapfile -r /mnt/swap/swapfile)"; +msg2 "Root-disk UUID is: $(lsblk -no UUID -T $DISK_ROOT)"; +msg2 "EFI-disk UUID is: $(lsblk -no UUID -T $DISK_EFI)"; warning "This information needs to be entered in the host configuration BEFORE rebuilding it. Otherwise the system won't boot!" msg "Checking for incompatibilities..." |