#! /bin/sh

. "`dirname $0`/rcdefs"

# Create the /etc/issue file (no more hand editing :-)
echo > /etc/issue

if [ -n "${CPUINFO}" ]
then
  echo -n "Welcome to `${BIN_UNAME} -n` (${CPUINFO})" >> /etc/issue
else
  echo -n "Welcome to `${BIN_UNAME} -n`" >> /etc/issue
fi

echo " running `${BIN_UNAME}` `${BIN_UNAME} -r`!" >> /etc/issue
echo >> /etc/issue
