#!/bin/bash

MINVAR=/var/log/minerva

if [ -f $MINVAR/cache/weather.txt ]; then
   cat $MINVAR/cache/weather.txt
   exit 0;
else
   echo "No weather data is currently available"
   exit 1;
fi

