#!/bin/sh
#
# Let wmweather grab the latest weather report.

if pidlist="$(pidof wmweather wmWeather)"
then
	kill -ALRM $pidlist
fi

exit 0
