#
# ident "$Id$ SMI"
#
# Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
# Use is subject to license terms.
#

theDefaultDir=$PKG_INSTALL_ROOT/etc/opt/SUNWkio/prototypes/default
if [ -d $theDefaultDir ] ; then
 exit 0
fi

if [ -f $theDefaultDir ] ; then
 echo "Warning: $theDefaultDir but is a file and not a directory."
 exit 0
fi

if [ -L $theDefaultDir ] ; then
 echo "Warning: $theDefaultDir exists but it is a link which cannot be resolved"
 exit 0
fi

mkdir $theDefaultDir
exit 0
