#!/sbin/sh
#
# Wrapper round mount to change fs to fast.
#
#

/tmp/usr/lib/fs/ufs/mount "$@"
status=$?
# Shift all arguments but one.
shift `shift; echo $#`
$SI_CONFIG_DIR/bin/fastfs $1 fast
exit $status
