diff options
author | ene <ene@sils.li> | 2023-03-21 18:07:06 +0100 |
---|---|---|
committer | ene <ene@sils.li> | 2023-03-21 18:07:06 +0100 |
commit | 3b45b194b63348590b53f4068310ecf72b856111 (patch) | |
tree | 8c6ab779ded158e50267d68c7ec10ecfe7816ca7 /bootstrap | |
parent | Fix(bootstrap/install): Highlight important information (diff) | |
download | nixos-config-3b45b194b63348590b53f4068310ecf72b856111.tar.gz nixos-config-3b45b194b63348590b53f4068310ecf72b856111.zip |
Fix(bootstrap/install): Spacing in the information
Diffstat (limited to 'bootstrap')
-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..." |