#!/bin/sh
#
# /sbin/brc: this script executes before system shutdown 
#

# Stop process accounting (free /var so that it can be unmounted)...
/usr/sbin/accton 2>/dev/null

# Unmount all filesystems...
echo -n "Unmounting filesystems..."
/bin/umount -a
echo "done."
