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

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

