diff options
| -rwxr-xr-x | etc/rc.d/ntpdate | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/etc/rc.d/ntpdate b/etc/rc.d/ntpdate index c76f7a0e7f54..3f93e2718072 100755 --- a/etc/rc.d/ntpdate +++ b/etc/rc.d/ntpdate @@ -19,7 +19,9 @@ ntpdate_start() if [ -z "$ntpdate_hosts" -a -f ${ntpdate_config} ]; then ntpdate_hosts=`awk ' /^server[ \t]*127.127/ {next} - /^(server|peer)/ {print $2} + /^(server|peer)/ { + if ($2 ~/^-/) {print $3} + else {print $2}} ' < ${ntpdate_config}` fi if [ -n "$ntpdate_hosts" -o -n "$rc_flags" ]; then |
