#!/bin/ksh
#
# This is a sh wrapper around the Problems program, to try to
# diagnose startup problems when called from NetView.
#

D='/usr/mon'

echo `date` started.
echo ' '
echo 'Environment:'
system env 
echo ' '
echo 'Args:' $*
echo ' '

D_Problems=1
export D_Problems

cd $D 

exec Problems $*

sleep 1000 
echo `date` done.
