summaryrefslogtreecommitdiffstats
path: root/projectroot/etc/init.d/ntpclient
blob: ccd79152f98c2b16f5ad7da2be9cde9c81fcf342 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh
#
# ntpclient
#
case $1 in

	start)
		echo "ntpclient starting"
		/usr/sbin/ntpclient -i 600 -l -h @HOST@ > /dev/null &
		;;

esac