Add/Remove apps on the control panel

This commit is contained in:
Bob Mottram 2016-09-30 14:08:02 +01:00
parent 959cf717c9
commit a8588e2b9e
1 changed files with 32 additions and 30 deletions

View File

@ -1896,21 +1896,22 @@ function menu_top_level {
2 $"Backup and Restore" off \ 2 $"Backup and Restore" off \
3 $"Reset Tripwire" off \ 3 $"Reset Tripwire" off \
4 $"App Settings" off \ 4 $"App Settings" off \
5 $"Logging on/off" off \ 5 $"Add/Remove Apps" off \
6 $"Ping enable/disable" off \ 6 $"Logging on/off" off \
7 $"Manage Users" off \ 7 $"Ping enable/disable" off \
8 $"Email Filtering Rules" off \ 8 $"Manage Users" off \
9 $"Outgoing Email Proxy" off \ 9 $"Email Filtering Rules" off \
10 $"Security Settings" off \ 10 $"Outgoing Email Proxy" off \
11 $"Set the main repository (repo mirrors)" off \ 11 $"Security Settings" off \
12 $"Change the name of this system" off \ 12 $"Set the main repository (repo mirrors)" off \
13 $"Set the TLS date/time source" off \ 13 $"Change the name of this system" off \
14 $"Set a static local IP address" off \ 14 $"Set the TLS date/time source" off \
15 $"Wifi menu" off \ 15 $"Set a static local IP address" off \
16 $"Check for updates" off \ 16 $"Wifi menu" off \
17 $"Power off the system" off \ 17 $"Check for updates" off \
18 $"Restart the system" off \ 18 $"Power off the system" off \
19 $"Exit" on 2> $data 19 $"Restart the system" off \
20 $"Exit" on 2> $data
sel=$? sel=$?
case $sel in case $sel in
1) exit 1;; 1) exit 1;;
@ -1921,21 +1922,22 @@ function menu_top_level {
2) menu_backup_restore;; 2) menu_backup_restore;;
3) reset_tripwire;; 3) reset_tripwire;;
4) app_settings;; 4) app_settings;;
5) logging_on_off;; 5) ${PROJECT_NAME}-addremove;;
6) ping_enable_disable;; 6) logging_on_off;;
7) menu_users;; 7) ping_enable_disable;;
8) menu_email;; 8) menu_users;;
9) smtp_proxy;; 9) menu_email;;
10) security_settings;; 10) smtp_proxy;;
11) set_main_repo;; 11) security_settings;;
12) change_system_name;; 12) set_main_repo;;
13) set_tls_time_source;; 13) change_system_name;;
14) set_static_IP;; 14) set_tls_time_source;;
15) menu_wifi;; 15) set_static_IP;;
16) check_for_updates;; 16) menu_wifi;;
17) shut_down_system;; 17) check_for_updates;;
18) restart_system;; 18) shut_down_system;;
19) break;; 19) restart_system;;
20) break;;
esac esac
done done
} }