What's new

Asus merlin entware pyload

  • SNBForums Code of Conduct

    SNBForums is a community for everyone, no matter what their level of experience.

    Please be tolerant and patient of others, especially newcomers. We are all here to share and learn!

    The rules are simple: Be patient, be nice, be helpful or be gone!

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!
Top