#!/bin/bash

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.RenewWDT $nodeURL

