#!/bin/sh

ntpserver=tock.stdtime.gov.tw
ntpserver_ip=220.130.158.71

killall ntpclient

if [ -f /usr/bin/ntpclient ]; then
	echo "ntpclient sync time with $ntpserver"
	ntpclient -s -h  $ntpserver_ip
fi
exit 0
