#!/bin/sh
#
# /etc/brc.. This script gets run just before the system is down.
#
echo Syncing disks...
/bin/sync
cat << EOF

If you are running off the ramdisk, expect a 'umount:/dev/fd0 not mounted'
error. You can safely ignore it.

Unmounting file systems.....
EOF
/etc/umount -a
echo Done.
