Pārlūkot izejas kodu

Add/Remove apps on the control panel

Bob Mottram 8 gadus atpakaļ
vecāks
revīzija
a8588e2b9e
1 mainītis faili ar 32 papildinājumiem un 30 dzēšanām
  1. 32
    30
      src/freedombone-controlpanel

+ 32
- 30
src/freedombone-controlpanel Parādīt failu

@@ -1896,21 +1896,22 @@ function menu_top_level {
1896 1896
                2 $"Backup and Restore" off \
1897 1897
                3 $"Reset Tripwire" off \
1898 1898
                4 $"App Settings" off \
1899
-               5 $"Logging on/off" off \
1900
-               6 $"Ping enable/disable" off \
1901
-               7 $"Manage Users" off \
1902
-               8 $"Email Filtering Rules" off \
1903
-               9 $"Outgoing Email Proxy" off \
1904
-               10 $"Security Settings" off \
1905
-               11 $"Set the main repository (repo mirrors)" off \
1906
-               12 $"Change the name of this system" off \
1907
-               13 $"Set the TLS date/time source" off \
1908
-               14 $"Set a static local IP address" off \
1909
-               15 $"Wifi menu" off \
1910
-               16 $"Check for updates" off \
1911
-               17 $"Power off the system" off \
1912
-               18 $"Restart the system" off \
1913
-               19 $"Exit" on 2> $data
1899
+               5 $"Add/Remove Apps" off \
1900
+               6 $"Logging on/off" off \
1901
+               7 $"Ping enable/disable" off \
1902
+               8 $"Manage Users" off \
1903
+               9 $"Email Filtering Rules" off \
1904
+               10 $"Outgoing Email Proxy" off \
1905
+               11 $"Security Settings" off \
1906
+               12 $"Set the main repository (repo mirrors)" off \
1907
+               13 $"Change the name of this system" off \
1908
+               14 $"Set the TLS date/time source" off \
1909
+               15 $"Set a static local IP address" off \
1910
+               16 $"Wifi menu" off \
1911
+               17 $"Check for updates" off \
1912
+               18 $"Power off the system" off \
1913
+               19 $"Restart the system" off \
1914
+               20 $"Exit" on 2> $data
1914 1915
         sel=$?
1915 1916
         case $sel in
1916 1917
             1) exit 1;;
@@ -1921,21 +1922,22 @@ function menu_top_level {
1921 1922
             2) menu_backup_restore;;
1922 1923
             3) reset_tripwire;;
1923 1924
             4) app_settings;;
1924
-            5) logging_on_off;;
1925
-            6) ping_enable_disable;;
1926
-            7) menu_users;;
1927
-            8) menu_email;;
1928
-            9) smtp_proxy;;
1929
-            10) security_settings;;
1930
-            11) set_main_repo;;
1931
-            12) change_system_name;;
1932
-            13) set_tls_time_source;;
1933
-            14) set_static_IP;;
1934
-            15) menu_wifi;;
1935
-            16) check_for_updates;;
1936
-            17) shut_down_system;;
1937
-            18) restart_system;;
1938
-            19) break;;
1925
+            5) ${PROJECT_NAME}-addremove;;
1926
+            6) logging_on_off;;
1927
+            7) ping_enable_disable;;
1928
+            8) menu_users;;
1929
+            9) menu_email;;
1930
+            10) smtp_proxy;;
1931
+            11) security_settings;;
1932
+            12) set_main_repo;;
1933
+            13) change_system_name;;
1934
+            14) set_tls_time_source;;
1935
+            15) set_static_IP;;
1936
+            16) menu_wifi;;
1937
+            17) check_for_updates;;
1938
+            18) shut_down_system;;
1939
+            19) restart_system;;
1940
+            20) break;;
1939 1941
         esac
1940 1942
     done
1941 1943
 }