#!/bin/bash
# Wakeup the specified subnode(s), or if none specified, wakeup all subnodes
if [ ! -n "$1" ]
then
  echo "usage: `basename $0` nodeURL"
  exit 1
fi  

## nodeURL=$1


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

