small-packages/luci-app-store/root/usr/share/opkg/intercept/rm
2026-05-10 09:48:30 +08:00

8 lines
184 B
Bash
Executable File

#!/bin/sh
for i in "$@"; do
echo "$i" | grep -s -q "/etc/uci-defaults/" \
&& mkdir -p /etc/istore/uci-defaults_bak \
&& cp -f "$i" /etc/istore/uci-defaults_bak/
done
/bin/rm "$@"