mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
services: ntp-service-type: Remove deprecated server as strings support.
* gnu/services/networking.scm (<ntp-configuration>)[servers]: Rename accessor to ntp-configuration-servers. (ntp-configuration-servers): Remove helper procedure. (ntp-shepherd-service): Remove helper procedure usage. * tests/networking.scm: Remove obsolete test. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
0425c91a92
commit
b92880d011
2 changed files with 21 additions and 49 deletions
|
@ -486,35 +486,18 @@ (define-record-type* <ntp-configuration>
|
||||||
ntp-configuration?
|
ntp-configuration?
|
||||||
(ntp ntp-configuration-ntp
|
(ntp ntp-configuration-ntp
|
||||||
(default ntp))
|
(default ntp))
|
||||||
(servers %ntp-configuration-servers ;list of <ntp-server> objects
|
(servers ntp-configuration-servers ;list of <ntp-server> objects
|
||||||
(default %ntp-servers))
|
(default %ntp-servers))
|
||||||
(allow-large-adjustment? ntp-allow-large-adjustment?
|
(allow-large-adjustment? ntp-allow-large-adjustment?
|
||||||
(default #t))) ;as recommended in the ntpd manual
|
(default #t))) ;as recommended in the ntpd manual
|
||||||
|
|
||||||
(define (ntp-configuration-servers ntp-configuration)
|
|
||||||
;; A wrapper to support the deprecated form of this field.
|
|
||||||
(let ((ntp-servers (%ntp-configuration-servers ntp-configuration)))
|
|
||||||
(match ntp-servers
|
|
||||||
(((? string?) (? string?) ...)
|
|
||||||
(format (current-error-port) "warning: Defining NTP servers as strings is \
|
|
||||||
deprecated. Please use <ntp-server> records instead.\n")
|
|
||||||
(map (lambda (addr)
|
|
||||||
(ntp-server
|
|
||||||
(type 'server)
|
|
||||||
(address addr)
|
|
||||||
(options '()))) ntp-servers))
|
|
||||||
((($ <ntp-server>) ($ <ntp-server>) ...)
|
|
||||||
ntp-servers))))
|
|
||||||
|
|
||||||
(define (ntp-shepherd-service config)
|
(define (ntp-shepherd-service config)
|
||||||
(match-record config <ntp-configuration>
|
(match-record config <ntp-configuration>
|
||||||
(ntp servers allow-large-adjustment?)
|
(ntp servers allow-large-adjustment?)
|
||||||
(let ((servers (ntp-configuration-servers config)))
|
|
||||||
;; TODO: Add authentication support.
|
;; TODO: Add authentication support.
|
||||||
(define config
|
(define config
|
||||||
(string-append "driftfile /var/run/ntpd/ntp.drift\n"
|
(string-append "driftfile /var/run/ntpd/ntp.drift\n"
|
||||||
(string-join (map ntp-server->string servers)
|
(string-join (map ntp-server->string servers) "\n")
|
||||||
"\n")
|
|
||||||
"
|
"
|
||||||
# Disable status queries as a workaround for CVE-2013-5211:
|
# Disable status queries as a workaround for CVE-2013-5211:
|
||||||
# <http://support.ntp.org/bin/view/Main/SecurityNotice#DRDoS_Amplification_Attack_using>.
|
# <http://support.ntp.org/bin/view/Main/SecurityNotice#DRDoS_Amplification_Attack_using>.
|
||||||
|
@ -544,7 +527,7 @@ (define ntpd.conf
|
||||||
'("-g")
|
'("-g")
|
||||||
'()))
|
'()))
|
||||||
#:log-file "/var/log/ntpd.log"))
|
#:log-file "/var/log/ntpd.log"))
|
||||||
(stop #~(make-kill-destructor)))))))
|
(stop #~(make-kill-destructor))))))
|
||||||
|
|
||||||
(define %ntp-accounts
|
(define %ntp-accounts
|
||||||
(list (user-account
|
(list (user-account
|
||||||
|
|
|
@ -43,17 +43,6 @@ (define %ntp-server-sample
|
||||||
"server some.ntp.server.org iburst version 3 maxpoll 16 prefer"
|
"server some.ntp.server.org iburst version 3 maxpoll 16 prefer"
|
||||||
(ntp-server->string %ntp-server-sample))
|
(ntp-server->string %ntp-server-sample))
|
||||||
|
|
||||||
(test-equal "ntp configuration servers deprecated form"
|
|
||||||
(ntp-configuration-servers
|
|
||||||
(ntp-configuration
|
|
||||||
(servers (list "example.pool.ntp.org"))))
|
|
||||||
(ntp-configuration-servers
|
|
||||||
(ntp-configuration
|
|
||||||
(servers (list (ntp-server
|
|
||||||
(type 'server)
|
|
||||||
(address "example.pool.ntp.org")
|
|
||||||
(options '())))))))
|
|
||||||
|
|
||||||
|
|
||||||
;;;
|
;;;
|
||||||
;;; OpenNTPD
|
;;; OpenNTPD
|
||||||
|
|
Loading…
Reference in a new issue