#!/bin/sh

UNAME=`uname -n 2>/dev/null`
if [ X$UNAME = X ]
then	echo INFO
else	echo INFO.$UNAME
fi
