#!/bin/sh
#
# Copyright (c) 2002, PerfCap Corporation, Nashua NH
# All Rights Reserved
#-------------------------------------------------------------------

PERFCAP_OWN="bin:bin"

# is this even possible?

if [ ! -d /opt ]
then
   echo "Creating /opt"
   mkdir /opt
   chown $PERFCAP_OWN /opt
   chmod 0755 /opt
fi
exit 0

