#!/sbin/sh
#
# Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
# Use is subject to license terms.
#
# ident	"@(#)standardmounts	1.1	08/05/06 SMI"
#

# Mount the fd file systems if mount point exists.

exec < $vfstab; readvfstab /dev/fd
if [ "$mountp" -a -d /dev/fd ]; then
	/sbin/mount /dev/fd >/dev/null 2>&1
fi

