#!/bin/sh
#
# Restart Weather Related Daemons
#
# Author: David Norris
#
#
# Shut Down
#
echo "Stopping Servers!"
#
/etc/rc.d/init.d/wxbeacon stop
/etc/rc.d/init.d/u2logger stop
/etc/rc.d/init.d/aprsd stop
#
# Start up
#
echo "Starting Servers!"
#
/etc/rc.d/init.d/aprsd start
/etc/rc.d/init.d/u2logger start
/etc/rc.d/init.d/wxbeacon start
echo "We should be restarted."