hm keine Ahnung frag mal im IRC nach
das Howto kann jetzt wiefolgt gekürzt werden:
Das Setup sollte selbsterklärend sein. Darauf achten, welche IP, welcher Port etc. Ich benutze das threaded WebIFCode:ipkg install wget tesseract-ocr tesseract-ocr-lang-eng ossp-js unrar wget http://get.pyload.org/static/pyload-v0.4.6-noarch.ipk ipkg install pyload-v0.4.6-noarch.ipk pyLoadCore -s
hier noch meine /opt/etc/init.d/S80pyLoad
Code:#!/bin/sh prefix="/opt" PATH=${prefix}/bin:${prefix}/sbin:/sbin:/bin:/usr/sbin:/usr/bin start() { echo "starting pyLoad" pyLoadCore --daemon } stop() { echo "stopping pyLoad" pyLoadCore --status | xargs kill -9 } status() { pyLoadCore --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




Reply With Quote
