Hello Henrik,<br><br>In Hobbit 4.2 there is a comestic bug in ~hobbit/client/bin/hobbitclient-linux.sh.<br><br>This script parses on what Linux-release Hobbit is running.<br><br>echo "[osversion]"<br>...[snip]...
<br>elif [ -f /etc/SuSE-release ]; then<br>        grep ^SuSE /etc/SuSE-release<br>...[snip]...<br>
<br>This produces the right output on Suse 9.1:<br><br>SuSE Linux 9.1 (i586)<br>VERSION = 9.1<br><br>But on SLES9, the file contains SUSE in uppercase.<br><br># cat /etc/SuSE-release<br>SUSE LINUX Enterprise Server 9 (i586)
<br>VERSION = 9<br>PATCHLEVEL = 3<br><br>Of course this can easily be solved with a grep -i.<br><br>Regards,<br>Peter<br>