summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDieter Plaetinck <dieter@plaetinck.be>2010-12-18 12:18:55 +0100
committerDieter Plaetinck <dieter@plaetinck.be>2010-12-18 12:18:55 +0100
commit2b576c8f64f416e73a4fcc363fb05cdbf3764717 (patch)
treeb562f43b4d100c2b2ec76ebb1b689505b79ff2bd
parent0ef48a406e667f1852579963e513af4c0262a9e5 (diff)
adapt ask_checklist calls for new libui-sh api since e549a38079530afc3913
-rw-r--r--src/core/libs/lib-ui-interactive.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/libs/lib-ui-interactive.sh b/src/core/libs/lib-ui-interactive.sh
index a77a873..843fd09 100644
--- a/src/core/libs/lib-ui-interactive.sh
+++ b/src/core/libs/lib-ui-interactive.sh
@@ -483,7 +483,7 @@ interactive_filesystem ()
notify "Automatically picked PV ${list2[0]} to use for this VG. It's the only available lvm PV"
fs_params=${list2[0]}
else
- ask_checklist "Which lvm PV's must this volume group span?" $list || return 1
+ ask_checklist "Which lvm PV's must this volume group span?" 0 $list || return 1
fs_params="${ANSWER_CHECKLIST[@]}"
fi
fi
@@ -742,7 +742,7 @@ If any previous configuration you've done until now (like fancy filesystems) req
grouplist+=(${i} - OFF)
done
- ask_checklist "Select Package groups\nDo not deselect base unless you know what you're doing!" "${grouplist[@]}" || return 1
+ ask_checklist "Select Package groups\nDo not deselect base unless you know what you're doing!" 0 "${grouplist[@]}" || return 1
grouplist=("${ANSWER_CHECKLIST[@]}")
# get sorted array of available packages, with their groups. TODO: we should use $repos here