mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-16 04:13:31 +00:00
15 lines
377 B
Bash
15 lines
377 B
Bash
#!/bin/sh
|
|
|
|
uci -q batch <<-EOF >/dev/null
|
|
delete ucitrack.@epg[-1]
|
|
add ucitrack epg
|
|
set ucitrack.@epg[-1].init=epg
|
|
delete ucitrack.@oscam[-1]
|
|
add ucitrack oscam
|
|
set ucitrack.@oscam[-1].init=oscam
|
|
add_list ucitrack.@oscam[-1].affects=cron
|
|
commit ucitrack
|
|
EOF
|
|
rm -f /tmp/luci-indexcache
|
|
exit 0
|