Browse Source

If apps fail to install then keep going but record them in the log

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

+ 0
- 2
src/freedombone-addremove View File

@@ -202,8 +202,6 @@ 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
206
-        exit 357223
207 205
     fi
208 206
 }
209 207
 

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

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

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

@@ -555,8 +555,6 @@ 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
559
-            exit 368224
560 558
         fi
561 559
     fi
562 560
 }