blob: 1e9218bd8ca68c9bcac3010e997436f2d2de8e97 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/sh
#
# /etc/cron/daily/rdate: synchronize system clock
#
# Note:
# If called with the -a option, rdate use the adjtime
# system call instead of settimeofday to gradually skew
# the local time to the remote time rather than just
# hopping. See rdate(8) and adjtime(2).
#/usr/bin/rdate -nav pool.ntp.org
# End of file
|