#! /bin/sh

. "`dirname $0`/rcdefs"

case "$1" in
  start)
    Print -n "Setting hostname... "
    ${BIN_HOSTNAME} `echo ${DEFAULT_HOSTNAME} | ${BIN_CUT} -f1 -d .`
    Print "done."
    ;;
  stop)
    ;;
  *)
    Usage "$0"
    exit 1
esac

exit 0
