diff options
author | keramida <keramida@FreeBSD.org> | 2009-01-29 06:43:29 +0000 |
---|---|---|
committer | keramida <keramida@FreeBSD.org> | 2009-01-29 06:43:29 +0000 |
commit | 7a4494232bd201a9dd1b5de900a340e0667dde2d (patch) | |
tree | 561ba01300b439a6a3e26e17b76f49fa371fcb5c /etc | |
parent | db7ede5c5092811fcf2a391e7118329f29143709 (diff) | |
download | FreeBSD-src-7a4494232bd201a9dd1b5de900a340e0667dde2d.zip FreeBSD-src-7a4494232bd201a9dd1b5de900a340e0667dde2d.tar.gz |
Backout change 187782. It inhibits ntpd from starting at all
when ntpd_sync_on_start is set.
Noticed by: rafan
Diffstat (limited to 'etc')
-rwxr-xr-x | etc/rc.d/ntpd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/rc.d/ntpd b/etc/rc.d/ntpd index 3e7a8c0..7a4eef8 100755 --- a/etc/rc.d/ntpd +++ b/etc/rc.d/ntpd @@ -23,7 +23,7 @@ ntpd_precmd() rc_flags="-c ${ntpd_config} ${ntpd_flags}" if checkyesno ntpd_sync_on_start; then - rc_flags="-q -g $rc_flags" + rc_flags="-g $rc_flags" fi if [ -z "$ntpd_chrootdir" ]; then |