From efcb4c1d0671a1e3dfd2d778a7cb8d306c1d3b0d Mon Sep 17 00:00:00 2001 From: Saverio Miroddi Date: Sun, 23 Feb 2020 09:59:52 +0100 Subject: [PATCH] Improve free tail space message It's not clear if the unit needed to be specified or not. --- install-zfs.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install-zfs.sh b/install-zfs.sh index 0f86161..6246057 100755 --- a/install-zfs.sh +++ b/install-zfs.sh @@ -422,7 +422,7 @@ function ask_free_tail_space { local tail_space_invalid_message= while [[ ! $v_free_tail_space =~ ^[0-9]+$ ]]; do - v_free_tail_space=$(whiptail --inputbox "${tail_space_invalid_message}Enter the space to leave at the end of each disk (0 for none):" 30 100 0 3>&1 1>&2 2>&3) + v_free_tail_space=$(whiptail --inputbox "${tail_space_invalid_message}Enter the space in GiB to leave at the end of each disk (0 for none):" 30 100 0 3>&1 1>&2 2>&3) tail_space_invalid_message="Invalid size! " done