What's new

Asus merlin entware pyload

kiesa1231

Regular Contributor
Hello all please help i installed in entware pyload plugin.But after asus rt-n16 reboot plugin cannot start.I try manually start /opt/etc/init.d/S51pyload start but plugin do not want start please help thanks.
 
Thanks but it's another startup scripts and configs in entware and optware.My startup script
#!/bin/sh

prefix="/opt"
PATH=${prefix}/bin:${prefix}/sbin:/sbin:/bin:/usr/sbin:/usr/bin

start() {
echo "starting pyLoad"
pyload --daemon
}

stop() {
echo "stopping pyLoad"
pyload --status | xargs kill -9
}

status() {
pyload --status
}

case "$1" in
start)
start
;;
stop)
stop
;;
restart)
stop
sleep 4
start
;;
status) status
;;
*)
echo "Usage: $0 (start|stop|restart|status)"
exit 1
;;
esac

exit 0

Please help.
 
Last edited:

Latest threads

Support SNBForums w/ Amazon

If you'd like to support SNBForums, just use this link and buy anything on Amazon. Thanks!

Sign Up For SNBForums Daily Digest

Get an update of what's new every day delivered to your mailbox. Sign up here!

Members online

Back
Top