#!/bin/sh 
# $Id: setup.sh,v 1.5 1998/02/24 21:31:19 nathanw Exp $ 
# Some setup.

if [ ! -f /tmp/.setup ]; then

    # Remount / read-write
    mount /dev/md0a /

    # Mount a memory filesystem on /tmp
    mount_mfs -s 8192 swap /tmp

    # Copy /install/vars to /tmp for frobbing.
    cp /install/vars /tmp

    echo > /tmp/.setup
fi
