I went with OpenSuSE 11.4 in the end, on the grounds that it's at the
mature end of the 11.x series of releases.  I had to fix the
/etc/init.d/squeezeboxserver startup script to resolve the usual locale
issue as it has a bug.  I needed to replace:

Code:
--------------------
    # Source rc.status and reset
  . /etc/rc.status
  rc_reset
--------------------

with

Code:
--------------------
    # Source rc.status and reset
  . /etc/rc.status
  LC_ALL="en_GB.UTF-8"  # hack
  export LC_ALL         # hack
  rc_reset
--------------------

because the OpenSuSE rc.status script sets LC_ALL to the CTYPE locale.


------------------------------------------------------------------------
VirusKiller's Profile: http://forums.slimdevices.com/member.php?userid=19799
View this thread: http://forums.slimdevices.com/showthread.php?t=96492

_______________________________________________
unix mailing list
[email protected]
http://lists.slimdevices.com/mailman/listinfo/unix

Reply via email to