summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDieter Plaetinck <dieter@plaetinck.be>2010-03-05 19:49:43 +0100
committerDieter Plaetinck <dieter@plaetinck.be>2010-03-05 19:49:43 +0100
commitec4ea774231668bf5a78afb8b6ec2cc94b75e1c6 (patch)
treee91086f97fbcfe64192ea7c6bfc7f97591cb2ce2
parenta2676136aa7dfc0551f4e30ba3360c4cf88ec6f0 (diff)
remove /etc from suggested list of mountpoints as thats a bad idea + add /var as suggested item. fixes FS#17136
-rw-r--r--src/core/libs/lib-ui-interactive.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/libs/lib-ui-interactive.sh b/src/core/libs/lib-ui-interactive.sh
index 8a66522..5aedda2 100644
--- a/src/core/libs/lib-ui-interactive.sh
+++ b/src/core/libs/lib-ui-interactive.sh
@@ -452,7 +452,7 @@ interactive_filesystem ()
then
default=no
[ -n "$fs_mountpoint" ] && default="$fs_mountpoint"
- 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
+ ask_option $default "Select the mountpoint" "Select a mountpoint for $part" required / 'root' /boot 'files for booting' /home 'home directories' /var 'variable files' /tmp 'temporary files' custom 'enter a custom mountpoint' || return 1
fs_mountpoint=$ANSWER_OPTION
[ "$default" == 'no' ] && default=
if [ "$ANSWER_OPTION" == custom ]