#!/bin/sh
#
# /etc/rc.d/rc.multi - multi user bootup
#

if [ -f /etc/rc.d/rc.conf ]; then
  . /etc/rc.d/rc.conf
fi

# Set the hostname
echo "Setting hostname: $HOSTNAME"
/bin/hostname $HOSTNAME

# Start the rc.network script if found
if [ -x /etc/rc.d/rc.network ]; then
    /etc/rc.d/rc.network
fi

# Start the rc.services script if found
if [ -x /etc/rc.d/rc.services ]; then
    /etc/rc.d/rc.services
fi

# Start the rc.local script if found
if [ -x /etc/rc.d/rc.local ]; then
    /etc/rc.d/rc.local
fi

# EOF
