79
79
choice=$( whiptail --title " $TITLE " --checklist \
80
80
" Please choose what to uninstall:\n\n
81
81
$CHECKLIST_GUIDE \n\n$RUN_LATER_GUIDE " " $WT_HEIGHT " " $WT_WIDTH " 4 \
82
- " Certbot" " (Everything related to Let's Encrypt)" " $CERTBOT_SWITCH " \
83
- " RustDesk-LOGs" " (RustDesk log dir)" ON \
84
- " RustDesk-SERVER" " (RustDesk server + RustDesk services)" ON \
85
- " NGINX-RustDesk" " (RustDesk Nginx config)" OFF \
86
- " NGINX" " (Linux package + ALL configs)" ON \
87
- " UFW" " (Linux package + RustDesk rules)" ON \
82
+ " certbot" " (Everything related to Let's Encrypt)" " $CERTBOT_SWITCH " \
83
+ " rustdesk-logs" " (RustDesk LOG dir)" ON \
84
+ " rustdesk-server" " (RustDesk SERVER + RustDesk services)" ON \
85
+ " nginx-rustdesk" " (RustDesk Nginx config)" OFF \
86
+ " nginx" " (Linux webserver package + ALL configs)" ON \
87
+ " ufw" " (Linux firewall package + RustDesk rules)" ON \
88
+ " whiptail" " (Linux menu package)" ON \
88
89
" curl" " (Linux package)" OFF \
89
- " wget" " (Linux package)" ON \
90
- " unzip" " (Linux package)" ON \
91
- " whiptail" " (Linux package)" ON \
90
+ " wget" " (Linux package)" OFF \
91
+ " unzip" " (Linux package)" OFF \
92
92
" dnsutils" " (Linux package)" ON \
93
93
" bind-utils" " (Linux package)" ON \
94
94
" bind" " (Linux package)" ON 3>&1 1>&2 2>&3 )
95
95
96
96
case " $choice " in
97
- * " NGINX-RustDesk " * )
97
+ * " nginx-rustdesk " * )
98
98
REMOVE_NGINX_CONF=" yes"
99
99
;;&
100
- * " NGINX " * )
100
+ * " nginx " * )
101
101
REMOVE_NGINX_ALL=" yes"
102
102
;;&
103
103
* " wget" * )
@@ -118,19 +118,19 @@ case "$choice" in
118
118
* " bind" * )
119
119
REMOVE_BIND=" yes"
120
120
;;&
121
- * " UFW " * )
121
+ * " ufw " * )
122
122
REMOVE_UFW=" yes"
123
123
;;&
124
- * " RustDesk-LOGs " * )
124
+ * " rustdesk-logs " * )
125
125
REMOVE_RUSTDESK_LOG=" yes"
126
126
;;&
127
- * " RustDesk-SERVER " * )
127
+ * " rustdesk-server " * )
128
128
REMOVE_RUSTDESK_SERVER=" yes"
129
129
;;&
130
130
* " curl" * )
131
131
REMOVE_CURL=" yes"
132
132
;;&
133
- * " Certbot " * )
133
+ * " certbot " * )
134
134
REMOVE_CERTBOT=" yes"
135
135
;;&
136
136
* )
0 commit comments