]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - etc/periodic/daily/480.leapfile-ntpd
Merge clang trunk r300422 and resolve conflicts.
[FreeBSD/FreeBSD.git] / etc / periodic / daily / 480.leapfile-ntpd
1 #!/bin/sh
2 #
3 # $FreeBSD$
4 #
5
6 # If there is a global system configuration file, suck it in.
7 #
8 if [ -r /etc/defaults/periodic.conf ]
9 then
10     . /etc/defaults/periodic.conf
11     source_periodic_confs
12 fi
13
14 case "$daily_ntpd_leapfile_enable" in
15     [Yy][Ee][Ss])
16         anticongestion
17         service ntpd onefetch
18         ;;
19 esac
20
21 exit $rc