|
@@ -427,6 +427,9 @@ function install_apps {
|
427
|
427
|
is_interactive=$1
|
428
|
428
|
|
429
|
429
|
APP_INSTALLED_SUCCESS=1
|
|
430
|
+ if [ -f /tmp/failed_apps ]; then
|
|
431
|
+ rm /tmp/failed_apps
|
|
432
|
+ fi
|
430
|
433
|
|
431
|
434
|
# interactive install configuration for each app
|
432
|
435
|
if [ ${is_interactive} ]; then
|
|
@@ -463,6 +466,7 @@ function install_apps {
|
463
|
466
|
install_completed ${a}
|
464
|
467
|
echo $"${a} was installed from interactive"
|
465
|
468
|
else
|
|
469
|
+ echo " ${a}" >> /tmp/failed_apps
|
466
|
470
|
APP_INSTALLED_SUCCESS=
|
467
|
471
|
echo $"${a} was not installed from interactive"
|
468
|
472
|
fi
|
|
@@ -488,6 +492,7 @@ function install_apps {
|
488
|
492
|
install_completed ${a}
|
489
|
493
|
echo $"${a} was installed"
|
490
|
494
|
else
|
|
495
|
+ echo " ${a}" >> /tmp/failed_apps
|
491
|
496
|
APP_INSTALLED_SUCCESS=
|
492
|
497
|
echo $"${a} was not installed"
|
493
|
498
|
fi
|