From 28464b9739ebc88c275634b1fd04881ff61b752b Mon Sep 17 00:00:00 2001 From: SunBK201 Date: Fri, 31 Oct 2025 18:37:38 +0800 Subject: [PATCH] feat: add postrm script for cleanup of ua3f files --- ipkg/CONTROL/postrm | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100755 ipkg/CONTROL/postrm diff --git a/ipkg/CONTROL/postrm b/ipkg/CONTROL/postrm new file mode 100755 index 0000000..e272679 --- /dev/null +++ b/ipkg/CONTROL/postrm @@ -0,0 +1,6 @@ +#!/bin/sh +rm -rf /etc/config/ua3f >/dev/null 2>&1 +rm -rf /var/log/ua3f >/dev/null 2>&1 +rm -rf /usr/lib/lua/luci/model/cbi/ua3f.lua >/dev/null 2>&1 +rm -rf /usr/lib/lua/luci/controller/ua3f.lua >/dev/null 2>&1 +rm -rf /usr/lib/lua/luci/view/ua3f >/dev/null 2>&1