mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-16 04:13:31 +00:00
23 lines
205 B
Bash
Executable File
23 lines
205 B
Bash
Executable File
#!/bin/sh /etc/rc.common
|
|
# copyrights
|
|
# (1)epg dowload Script VER 0.10for openwrt by zjhzzyf
|
|
|
|
|
|
|
|
START=96
|
|
|
|
|
|
|
|
start(){
|
|
|
|
|
|
/usr/bin/epg start
|
|
}
|
|
|
|
stop() {
|
|
echo "not implemented yet!"
|
|
}
|
|
|
|
restart() {
|
|
start
|
|
} |