On Fri, Jul 10, 2009 at 11:00:02PM +0000, Peter Bortas @ Pike developers forum wrote:
if [ X$tmp_node != Xlocalhost.localdomain ]; then
if [ X$tmp_node != Xlocalhost.localdomain -o X$tmp_node != Xlocalhost ]; then
should be: if [ X$tmp_node != Xlocalhost.localdomain -a X$tmp_node != Xlocalhost ]; then otherwise it's always true...
that works.
greetings, martin.