mirror of
https://github.com/kiddin9/op-packages.git
synced 2026-08-02 15:39:31 +08:00
22 lines
540 B
Bash
22 lines
540 B
Bash
#!/bin/sh
|
|
[ ! -f "/usr/share/ucitrack/luci-app-cqustdotnet.json" ] && {
|
|
cat > /usr/share/ucitrack/luci-app-cqustdotnet.json << EEOF
|
|
{
|
|
"config": "cqustdotnet",
|
|
"init": "cqustdotnet"
|
|
}
|
|
EEOF
|
|
}
|
|
|
|
uci -q batch <<-EOF >/dev/null
|
|
delete ucitrack.@cqustdotnet[-1]
|
|
add ucitrack cqustdotnet
|
|
set ucitrack.@cqustdotnet[-1].init=cqustdotnet
|
|
commit ucitrack
|
|
EOF
|
|
|
|
[ ! -s '/etc/config/cqustdotnet' ] && cp -f /usr/share/cqustdotnet/0_default_config /etc/config/cqustdotnet
|
|
rm -f /tmp/luci-indexcache
|
|
rm -rf /tmp/luci-modulecache/
|
|
exit 0
|