diff options
author | Ludovic Courtès <ludo@gnu.org> | 2016-10-20 15:14:17 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2016-10-20 15:43:59 +0200 |
commit | dc0322b51111d12e1d97e2cc456100c44dd31bb6 (patch) | |
tree | e264a710d9e64bc222d701e0bc1417e7c14603c3 /doc | |
parent | 6d3dda4ff54b3d44c0de560e988d3a44541038b3 (diff) | |
download | gnu-guix-dc0322b51111d12e1d97e2cc456100c44dd31bb6.tar gnu-guix-dc0322b51111d12e1d97e2cc456100c44dd31bb6.tar.gz |
services: ntpd: Add 'allow-large-adjustment?' knob.
Suggested by Leo Famulari.
* gnu/services/networking.scm (<ntp-configuration>)[allow-large-adjustment?]:
New field.
(ntp-shepherd-service): Honor it.
(ntp-service): Add #:allow-large-adjustment? and honor it.
* doc/guix.texi (Networking Services): Document it.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/guix.texi | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/doc/guix.texi b/doc/guix.texi index 0c5d641b48..86b82c8c4a 100644 --- a/doc/guix.texi +++ b/doc/guix.texi @@ -8284,10 +8284,13 @@ configure networking." @end deffn @deffn {Scheme Procedure} ntp-service [#:ntp @var{ntp}] @ - [#:servers @var{%ntp-servers}] + [#:servers @var{%ntp-servers}] @ + [#:allow-large-adjustment? #f] Return a service that runs the daemon from @var{ntp}, the @uref{http://www.ntp.org, Network Time Protocol package}. The daemon will keep the system clock synchronized with that of @var{servers}. +@var{allow-large-adjustment?} determines whether @command{ntpd} is allowed to +make an initial adjustment of more than 1,000 seconds. @end deffn @defvr {Scheme Variable} %ntp-servers |