diff options
author | jim-p <jimp@pfsense.org> | 2012-08-25 13:15:20 -0400 |
---|---|---|
committer | jim-p <jimp@pfsense.org> | 2012-08-25 13:15:20 -0400 |
commit | d9c72958e3999a063544359a25f400845b95a2bc (patch) | |
tree | 0e3420441dff3106a5e86676ab793586c0aefada /etc/inc/system.inc | |
parent | 0300d9ecbc60d5f3d84f424a46214959a186b61a (diff) | |
download | pfsense-d9c72958e3999a063544359a25f400845b95a2bc.zip pfsense-d9c72958e3999a063544359a25f400845b95a2bc.tar.gz |
Fix ntp config syntax for the version we're using
Diffstat (limited to 'etc/inc/system.inc')
-rw-r--r-- | etc/inc/system.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/inc/system.inc b/etc/inc/system.inc index a4714ac..0f3d263 100644 --- a/etc/inc/system.inc +++ b/etc/inc/system.inc @@ -1305,8 +1305,8 @@ function system_ntp_configure($start_ntpd=true) { $ntpcfg .= "server {$ts} iburst maxpoll 9\n"; $ntpcfg .= "enable monitor\n"; - $ntpcfg .= "enable statistics\n"; - $ntpcfg .= "enable clockstats\n"; + $ntpcfg .= "enable stats\n"; + $ntpcfg .= "statistics clockstats\n"; $ntpcfg .= "statsdir {$statsdir}\n"; $ntpcfg .= "logconfig =syncall +clockall\n"; $ntpcfg .= "driftfile {$driftfile}\n"; |