#!/bin/bash
# Resume service on specified port
if [ ! -n "$2" ]
then
  echo "usage: `basename $0` nodeURL portName"
  exit 1
fi  

$JAVA -cp $SIAM_CLASSPATH \
-Djava.security.policy=$SIAM_HOME/properties/policy \
-Dlog4j.threshold=$LOG4J_THRESHOLD \
moos.operations.utils.ResumeService $*

