#!/bin/sh
########################################################################
# BooNE starter for ICA client. Note this cannot be a simple link
# because wfcmgr relies stupidly on the absolute path of the executable
# to find application defaults
#
# Chris Green <greenc@fnal.gov>
# UCR / BooNE
# 2002/05/22
#
########################################################################

if [ -x /usr/lib/ICAClient/wfcmgr ]; then
  exec /usr/lib/ICAClient/wfcmgr
  echo "Unable to start ICA Client!" 1>&2
  exit 1
else
  echo "ICA Client wfcmgr not found in /usr/lib/ICAClient" 1>&2
  exit 1
fi
