remove: 删除高级卸载插件功能

- 删除 lib/lib-common.sh 中的 advanced_uninstall() 函数
- 删除所有机型脚本中的高级卸载菜单选项
- 重新编号各脚本菜单选项
This commit is contained in:
2026-07-09 09:15:50 +08:00
parent 44756e87b2
commit 7eabcfecef
9 changed files with 11 additions and 74 deletions

View File

@@ -337,31 +337,6 @@ do_install_ui_helper() {
opkg install "$ipk_file"
}
# ============================================================================
# 高级卸载插件
# ============================================================================
advanced_uninstall() {
opkg update >/dev/null 2>&1 && opkg install bash || echo "bash 已存在"
if ! opkg list-installed | grep -q "luci-lua-runtime"; then
echo "📥 正在下载 luci-lua-runtime 依赖..."
wget -O /tmp/luci-lua-runtime.ipk "https://repo.istoreos.com/repo/all/compat/luci-lua-runtime_0.00-r0_all.ipk" || {
echo "❌ 下载 luci-lua-runtime 失败"
return 1
}
opkg install /tmp/luci-lua-runtime.ipk || {
echo "❌ 安装 luci-lua-runtime 失败"
return 1
}
rm -f /tmp/luci-lua-runtime.ipk
echo "✅ luci-lua-runtime 安装成功"
fi
echo "📥 正在下载高级卸载插件..."
wget -O /tmp/advanced_uninstall.run $HTTP_HOST/uninstall/luci-app-uninstall.run
sh /tmp/advanced_uninstall.run
}
# ============================================================================
# 恢复出厂设置
# ============================================================================