Current Path : /compat/linux/proc/68247/root/etc/rc.d/ |
FreeBSD hs32.drive.ne.jp 9.1-RELEASE FreeBSD 9.1-RELEASE #1: Wed Jan 14 12:18:08 JST 2015 root@hs32.drive.ne.jp:/sys/amd64/compile/hs32 amd64 |
Current File : //compat/linux/proc/68247/root/etc/rc.d/ntpdate |
#!/bin/sh # # $FreeBSD: release/9.1.0/etc/rc.d/ntpdate 231653 2012-02-14 10:16:56Z dougb $ # # PROVIDE: ntpdate # REQUIRE: NETWORKING syslogd named # KEYWORD: nojail . /etc/rc.subr name="ntpdate" rcvar="ntpdate_enable" stop_cmd=":" start_cmd="ntpdate_start" ntpdate_start() { if [ -z "$ntpdate_hosts" -a -f ${ntpdate_config} ]; then ntpdate_hosts=`awk ' /^server[ \t]*127.127/ {next} /^(server|peer)/ { if ($2 ~/^-/) {print $3} else {print $2}} ' < ${ntpdate_config}` fi if [ -n "$ntpdate_hosts" -o -n "$rc_flags" ]; then echo "Setting date via ntp." ${ntpdate_program:-ntpdate} $rc_flags $ntpdate_hosts fi } load_rc_config $name run_rc_command "$1"