|
@@ -388,6 +388,7 @@ function backup_apps {
|
388
|
388
|
|
389
|
389
|
function restore_apps {
|
390
|
390
|
localremote=$1
|
|
391
|
+ RESTORE_APP=$2
|
391
|
392
|
|
392
|
393
|
RESTORE_APPS_COMPLETED=()
|
393
|
394
|
|
|
@@ -396,12 +397,22 @@ function restore_apps {
|
396
|
397
|
|
397
|
398
|
for app_name in "${APPS_INSTALLED_NAMES[@]}"
|
398
|
399
|
do
|
399
|
|
- echo $"Restoring ${app_name}"
|
400
|
|
- app_load_variables ${app_name}
|
401
|
|
- function_check restore_${localremote}_${app_name}
|
402
|
|
- restore_${localremote}_${app_name}
|
403
|
|
- RESTORE_APPS_COMPLETED+=("${app_name}")
|
404
|
|
- echo $"Restored ${app_name}"
|
|
400
|
+ confirm_restore=
|
|
401
|
+ if [ ! $2 ]; then
|
|
402
|
+ confirm_restore=1
|
|
403
|
+ else
|
|
404
|
+ if [[ "$RESTORE_APP" == "$app_name" ]]; then
|
|
405
|
+ confirm_restore=1
|
|
406
|
+ fi
|
|
407
|
+ fi
|
|
408
|
+ if [ $confirm_restore ]; then
|
|
409
|
+ echo $"Restoring ${app_name}"
|
|
410
|
+ app_load_variables ${app_name}
|
|
411
|
+ function_check restore_${localremote}_${app_name}
|
|
412
|
+ restore_${localremote}_${app_name}
|
|
413
|
+ RESTORE_APPS_COMPLETED+=("${app_name}")
|
|
414
|
+ echo $"Restored ${app_name}"
|
|
415
|
+ fi
|
405
|
416
|
done
|
406
|
417
|
}
|
407
|
418
|
|