#!/bin/bash
ref=ntp.nblug.org.
echo /usr/bin/ntpq -c readvar
/usr/bin/ntpq -c readvar
echo /usr/sbin/ntpdate -u -q "$ref"
/usr/sbin/ntpdate -u -q "$ref"
echo /sbin/hwclock --show
/sbin/hwclock --show
echo date
date
[ -f /etc/adjtime ] && {
	echo cat /etc/adjtime
	cat /etc/adjtime
	echo ls -l /etc/adjtime
	ls -l /etc/adjtime
}
