Hi there - I don't know if this is the solution to your problem or not..but when I upgraded from 8.10 to 9.04 my mmserver script, which was pretty much the one from here (and the default that came with MusicIP):
http://wiki.slimdevices.com/index.php/Integrating_MusicIP_with_SqueezeCenter stopped working, and had the same behavior that you describe. To make it work I found a solution on the MusicIP forums...but looks like they are dead now. Essentially, I had to place a "nohup" in front of both "su"'s. so that it looks like: Code: -------------------- #! /bin/sh # NON-PRIVIELEGED USER TO RUN MUSICMAGICSERVER. USER= # PATH TO THE MUSICMAGICMIXERSERVER export MUSICHOME= case $1 in start) nohup su - $USER -c $MUSICHOME"MusicMagicServer start & > /dev/null" echo "Running MusicMagicServer" exit ;; stop) nohup su - $USER -c $MUSICHOME"MusicMagicServer stop & > /dev/null" echo "Stopped MusicMagicServer" exit ;; *) echo "Usage: /etc/rc.d/init.d/mmserver { start | stop }" exit ;; esac -------------------- then everything magically worked. Obviously you still need to configure your USER and MUSICHOME (like it says in the wiki..) -- but I'm guessing you already got that far. hope this helps! -arm PS: anyone know what's up with MusicIP? I love (and bought!) the Mixer...hoping not to see it disappear! -- the_arm ------------------------------------------------------------------------ the_arm's Profile: http://forums.slimdevices.com/member.php?userid=9891 View this thread: http://forums.slimdevices.com/showthread.php?t=66953 _______________________________________________ plugins mailing list [email protected] http://lists.slimdevices.com/mailman/listinfo/plugins
