#!/bin/bash

if [ ! -n "$1" ]
then
  echo "usage: `basename $0` nodeURL"
  exit 1
fi  

nodeURL=$1

# Script executes moos.deployed.NodeTest.main()
$JAVA -cp $SIAM_CLASSPATH \
-Djava.security.policy=$SIAM_HOME/properties/policy \
moos.operations.utils.StartServices $nodeURL

