Unfortunately no one can be told what fun_plug is - you have to see it for yourself.
You are not logged in.
Largest problem to me is the fact that you cannot configure the music tree anymore. Now you can also use the CH3SNAS buildin upnp server.
Maybe i can't find how to do it? Otherwise i go back to 4.4.11
Offline
@SilentException: I found your script but want to know a few things before I use it.
You seem to use a few directories I don't have.
- /web/log/ for the twonkymedia.log file (Is this log file needed?)
- /ffp/share/twonky/ for the twonkymedia file (In my case it's in /mnt/HD_a2/twonky/ )
Can you please explain?
#!/ffp/bin/sh
# PROVIDE: twonky
# REQUIRE: LOGIN
. /ffp/etc/ffp.subr
name="twonky"
start_cmd="twonky_start"
stop_cmd="twonky_stop"
status_cmd="twonky_status"
log_file="/web/log/twonkymedia.log"
twonky_start()
{
echo "Starting twonky..."
route add -net 224.0.0.0 netmask 240.0.0.0 dev egiga0
#/ffp/share/twonky/twonkymedia >$log_file 2>&1 &
/ffp/share/twonky/twonkymedia &
sleep 2
echo "twonky started."
}
twonky_stop()
{
if [ `twonky_temp_status` = "running" ]; then
echo "Killing twonky..."
killall twonkymedia
sleep 2
echo "twonky killed."
else
echo "Nothing to do..."
fi
}
twonky_status()
{
if [ -n "$(pidof twonkymedia)" ]; then
echo "twonky running."
else
echo "twonky stopped."
fi
}
twonky_temp_status()
{
if [ -n "$(pidof twonkymedia)" ]; then
echo "running"
else
echo "stopped"
fi
}
run_rc_command "$1"Offline
Does #touch /bin/.tv work with the 4.4.18 or new 5.x ?
Last edited by Aqvahh (2009-10-12 13:53:52)
Offline