#!/bin/bash

# remove log files. Normally wouldn't do this, but this is a test.
rm -f /tmp/jma_test.txt
rm -f /tmp/jma_test_monit.out

if pgrep monit 2>&1 >/dev/null; then
  service monit restart
fi
