r3564@krups: intrigeri | 2005-11-16 20:33:48 +0100

dup.helper: disabled connection setup, waiting for rdiff.helper code to be shared in some lib.
This commit is contained in:
intrigeri 2005-11-29 10:10:31 +00:00
parent 089f74ad69
commit aabc2bbe10

View File

@ -159,9 +159,12 @@ do_dup_gpg() {
set +o noglob
_gpg_done="(DONE)"
setDefault conn
setDefault adv
# TODO: replace the above line by the following when do_dup_conn is written
# setDefault conn
}
# TODO: share rdiff.helper code in some lib, and use it here
do_dup_conn() {
_con_done="(DONE)"
setDefault adv
@ -354,11 +357,12 @@ dup_main_menu() {
gpgitem="configure GnuPG encryption/signing $_gpg_done"
conitem="set up ssh keys and test remote connection $_con_done"
advitem="edit advanced settings $_adv_done"
# TODO: add the following to the menu when do_dup_conn is written
# conn "$conitem" \
menuBox "$dup_title" "choose a step:" \
src "$srcitem" \
dest "$destitem" \
gpg "$gpgitem" \
conn "$conitem" \
adv "$advitem" \
finish "finish and create config file"
[ $? = 0 ] || return 1
@ -368,10 +372,13 @@ dup_main_menu() {
"src") do_dup_src;;
"dest") do_dup_dest;;
"gpg") do_dup_gpg;;
"conn") do_dup_conn;;
# TODO: enable the following when do_dup_conn is written
# "conn") do_dup_conn;;
"adv") do_dup_adv;;
"finish")
if [[ "$_con_done$_dest_done$_gpg_done$_src_done" != "(DONE)(DONE)(DONE)(DONE)" ]]; then
if [[ "$_dest_done$_gpg_done$_src_done" != "(DONE)(DONE)(DONE)" ]]; then
# TODO: replace the previous test by the following when do_dup_conn is written
# if [[ "$_con_done$_dest_done$_gpg_done$_src_done" != "(DONE)(DONE)(DONE)(DONE)" ]]; then
msgBox "$dup_title" "You cannot create the configuration file until the four first steps are completed."
else
do_dup_finish