diff options
author | Ludovic Courtès <ludo@gnu.org> | 2014-11-05 10:13:43 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2014-11-05 11:25:39 +0100 |
commit | 63854bcbb16e6b52edf966db428c4a1f049c3af5 (patch) | |
tree | 5c55018d9ea5f17eeba707f476dead7426530aa9 /doc | |
parent | 98c16943d50c8dd080b66bfe83a69b9e2a3dd16a (diff) | |
download | patches-63854bcbb16e6b52edf966db428c4a1f049c3af5.tar patches-63854bcbb16e6b52edf966db428c4a1f049c3af5.tar.gz |
services: Add NTP service.
* gnu/services/networking.scm (ntp-service): New procedure.
* doc/guix.texi (Networking Services): Document it.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/guix.texi | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/doc/guix.texi b/doc/guix.texi index fbf5bac9b4..4a596bcbf3 100644 --- a/doc/guix.texi +++ b/doc/guix.texi @@ -3845,6 +3845,17 @@ Return a service that starts @var{interface} with address @var{ip}. If gateway. @end deffn +@deffn {Monadic Procedure} ntp-service [#:ntp @var{ntp}] @ + [#:name-service @var{%ntp-servers}] +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}. +@end deffn + +@defvr {Scheme Variable} %ntp-servers +List of host names used as the default NTP servers. +@end defvr + @deffn {Monadic Procedure} tor-service [#:tor tor] Return a service to run the @uref{https://torproject.org,Tor} daemon. |