#!/bin/bash
#
# The monitor url can look something like http://192.168.1.155, or
# something linke http://radiationMonitor.domain.com depending on
# whether your local network uses a domain name server.
#

APP_PATH="/home/$USER/bin"
LOG_PATH="/home/$USER/log"

if [ `hostname` == "raspi2" ]; then
  AGENT_NAME="[a]rednsigAgent.py"
  NODE_URL="-u http://192.168.1.30/cgi-bin/signal.json"
else
  AGENT_NAME="[a]rednsigMirrorAgent.py"
  NODE_URL="-u http://73.157.139.23:7361/arednsig/dynamic/arednsigOutputData.js"
fi

PROCESS_ID="$(ps x | awk -v a=$AGENT_NAME '$7 ~ a {print $1}')"

if [ -n "$PROCESS_ID" ]; then
  if [ "$1" != "-q" ]; then
    printf "arednsig agent running [%s]\n" $PROCESS_ID
  fi
else
  printf "starting up arednsig agent\n"
  cd $APP_PATH
  ./$AGENT_NAME $NODE_URL >> $LOG_PATH/arednsigAgent.log 2>&1 &
fi