From c72198a587c00665f58d2c554c29221c418cbb3b Mon Sep 17 00:00:00 2001 From: Dieter Plaetinck Date: Sun, 28 Jun 2009 20:24:15 +0200 Subject: let user pick a mountpoint from a list or define a custom one --- src/core/libs/lib-ui-interactive.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/core/libs/lib-ui-interactive.sh b/src/core/libs/lib-ui-interactive.sh index d8dafe8..9f49502 100644 --- a/src/core/libs/lib-ui-interactive.sh +++ b/src/core/libs/lib-ui-interactive.sh @@ -415,7 +415,8 @@ interactive_filesystem () then default= [ -n "$fs_mountpoint" ] && default="$fs_mountpoint" - ask_string "Enter the mountpoint for $part" "$default" || return 1 + ask_option "$default" "Select the mountpoint" "Select a mountpoint for $part" required / 'root' /boot 'files for booting' /etc 'config files' /home 'home directories' /tmp 'temporary files' Custom 'enter a custom mountpoint' || return 1 + [ "$ANSWER_OPTION" == custom ] && ask_string "Enter the custom mountpoint for $part" "$default" || return 1 fs_mountpoint=$ANSWER_STRING fi -- cgit v1.2.3-54-g00ecf