mirror of
https://github.com/kiddin9/op-packages.git
synced 2026-09-13 20:04:45 +08:00
13 lines
237 B
Bash
13 lines
237 B
Bash
#!/bin/sh
|
|
|
|
[ ! -f "/usr/share/ucitrack/luci-app-timedreboot.json" ] && {
|
|
cat > /usr/share/ucitrack/luci-app-timedreboot.json << EEOF
|
|
{
|
|
"config": "timedreboot",
|
|
"init": "timedreboot"
|
|
}
|
|
EEOF
|
|
}
|
|
|
|
rm -f /tmp/luci-indexcache
|
|
exit 0 |