Browse Source

List the apps which failed

Bob Mottram 8 years ago
parent
commit
28b8ebc4da
3 changed files with 7 additions and 0 deletions
  1. 1
    0
      src/freedombone-addremove
  2. 5
    0
      src/freedombone-utils-selector
  3. 1
    0
      src/freedombone-utils-setup

+ 1
- 0
src/freedombone-addremove View File

@@ -202,6 +202,7 @@ function install_apps_selected {
202 202
     install_apps interactive
203 203
     if [ ! $APP_INSTALLED_SUCCESS ]; then
204 204
         echo $'One or more apps failed to install'
205
+        cat /tmp/failed_apps
205 206
         exit 357223
206 207
     fi
207 208
 }

+ 5
- 0
src/freedombone-utils-selector View File

@@ -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

+ 1
- 0
src/freedombone-utils-setup View File

@@ -555,6 +555,7 @@ function setup_apps {
555 555
         install_apps
556 556
         if [ ! $APP_INSTALLED_SUCCESS ]; then
557 557
             echo $'One or more apps failed to install'
558
+            cat /tmp/failed_apps
558 559
             exit 368224
559 560
         fi
560 561
     fi