🐶 Sync 2026-08-11 02:49:26

This commit is contained in:
github-actions[bot]
2026-08-11 02:49:26 +08:00
parent e9d2e50b56
commit 3d975a2853
52 changed files with 841 additions and 1058 deletions
+1 -1
View File
@@ -10,7 +10,7 @@ LUCI_DEPENDS:=+smscontrol
# Version: <major>.<minor>.<patch>
PKG_VERSION:=0.2.0
PKG_RELEASE:=3
PKG_RELEASE:=4
LUCI_TITLE:=LuCI utility to remote control via SMS
@@ -0,0 +1,19 @@
#!/bin/sh
[ ! -f "/usr/share/ucitrack/luci-app-smscontrol.json" ] && {
cat > /usr/share/ucitrack/luci-app-smscontrol.json << EEOF
{
"config": "smscontrol",
"init": "smscontrol"
}
EEOF
}
uci -q batch <<-EOF >/dev/null
delete ucitrack.@smscontrol[-1]
add ucitrack smscontrol
set ucitrack.@smscontrol[-1].init=smscontrol
commit ucitrack
EOF
rm -f /tmp/luci-indexcache
exit 0