#!/bin/sh

echo -n "System (Unix) time is kept in UTC: "
if rdate -s time-a.timefreq.bldrdoc.gov
then
echo "... and has been updated."
echo "If you want to update the hardware (CMOS) clock, you must use the"
echo "hwclock program.  However, this will only help you if your hardware"
echo "clock is customarily set in UTC, as opposed to local time."
else
echo "... could not connect to time server."
fi
