diff options
author | Dieter Plaetinck <dieter@plaetinck.be> | 2008-12-07 22:08:20 +0100 |
---|---|---|
committer | Dieter Plaetinck <dieter@plaetinck.be> | 2008-12-07 22:08:20 +0100 |
commit | 2db9be21b0a9d6d2d40185b41ca308bddd402216 (patch) | |
tree | d2f4074a5e5eee106b27150814bf363ce79eaf99 /src | |
parent | 9f60f23adbe33d51e666107b7d292d6419184af1 (diff) |
checklist fix + todo updates
Diffstat (limited to 'src')
-rw-r--r-- | src/core/libs/lib-blockdevices-filesystems.sh | 3 | ||||
-rw-r--r-- | src/core/libs/lib-ui.sh | 5 |
2 files changed, 5 insertions, 3 deletions
diff --git a/src/core/libs/lib-blockdevices-filesystems.sh b/src/core/libs/lib-blockdevices-filesystems.sh index df055de..7bc2730 100644 --- a/src/core/libs/lib-blockdevices-filesystems.sh +++ b/src/core/libs/lib-blockdevices-filesystems.sh @@ -554,6 +554,9 @@ process_filesystem () fi return 0 + +#TODO: if target has LVM volumes, copy /etc/lvm/backup to /etc on target (or maybe it can be regenerated with a command, i should look that up) + } diff --git a/src/core/libs/lib-ui.sh b/src/core/libs/lib-ui.sh index bddb739..eb3f727 100644 --- a/src/core/libs/lib-ui.sh +++ b/src/core/libs/lib-ui.sh @@ -131,12 +131,11 @@ ask_checklist () { [ -z "$1" ] && die_error "ask_checklist needs a question!" [ -z "$3" ] && debug "ask_checklist args: $@" && die_error "ask_checklist makes only sense if you specify at least 1 thing (incl ON/OFF switch)" - [ "$var_UI_TYPE" = dia ] && { _dia_ask_option "$@" ; return $? ; } - [ "$var_UI_TYPE" = cli ] && { _cli_ask_option "$@" ; return $? ; } + [ "$var_UI_TYPE" = dia ] && { _dia_ask_checklist "$@" ; return $? ; } + [ "$var_UI_TYPE" = cli ] && { _cli_ask_checklist "$@" ; return $? ; } } - ask_datetime () { if [ "$var_UI_TYPE" = dia ] |