Преглед изворни кода

Don't try to install hubzilla in onion only

Bob Mottram пре 8 година
родитељ
комит
03b8a85f98
1 измењених фајлова са 21 додато и 1 уклоњено
  1. 21
    1
      src/freedombone-addremove

+ 21
- 1
src/freedombone-addremove Прегледај датотеку

@@ -77,6 +77,26 @@ function mark_unselected_apps_as_removed {
77 77
     done
78 78
 }
79 79
 
80
+function app_expected_to_not_be_installed {
81
+    # is the given application expected to be installed by default?
82
+    select_all_apps="$1"
83
+    app_name="$2"
84
+
85
+    read_config_param ONION_ONLY
86
+
87
+    if [[ "$select_all_apps" == "add-all" ]]; then
88
+        if [[ "$app_name" == "vim"  ]]; then
89
+            echo "1"
90
+            return
91
+        fi
92
+        if [[ $ONION_ONLY != 'no' && "$app_name" == "hubzilla"  ]]; then
93
+            echo "1"
94
+            return
95
+        fi
96
+    fi
97
+    echo "0"
98
+}
99
+
80 100
 function show_apps {
81 101
     select_all_apps=$1
82 102
     applist=""
@@ -87,7 +107,7 @@ function show_apps {
87 107
         if [[ ${APPS_INSTALLED[$app_index]} == "0" &&  "$select_all_apps" != "add-all" ]]; then
88 108
             applist="$applist $n $a off"
89 109
         else
90
-            if [[ "$a" == "vim" && "$select_all_apps" == "add-all" ]]; then
110
+            if [[ $(app_expected_to_not_be_installed) == "1" ]]; then
91 111
                 applist="$applist $n $a off"
92 112
             else
93 113
                 applist="$applist $n $a on"