diff options
author | Simon South <simon@simonsouth.net> | 2021-01-11 12:04:59 -0500 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2021-01-16 23:30:59 +0100 |
commit | 181f290aa262eae22819c6234b4065786afb14cf (patch) | |
tree | 5100ed401c0b7523a1585489554a01a4a9ebb9e0 /tests/networking.scm | |
parent | fb3c0d3444f94e348952a5e611be219026ea3fa6 (diff) | |
download | guix-181f290aa262eae22819c6234b4065786afb14cf.tar.gz |
services: openntpd: Remove support for deprecated "-s" option.
* gnu/services/networking.scm (openntpd-configuration): Remove "allow-large-adjustment?" field. (openntpd-shepherd-service): Remove use of "allow-large-adjustment?" configuration field and "-s" daemon option. * tests/networking.scm (%openntpd-conf-sample): Remove "allow-large-adjustment?" field. * doc/guix.texi (Networking Services)[openntpd-service-type]: Remove "allow-large-adjustment?" field from sample configuration. [openntpd-configuration]: Remove description of "allow-large-adjustment?" field. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'tests/networking.scm')
-rw-r--r-- | tests/networking.scm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/networking.scm b/tests/networking.scm index c494a48067..f2421370d2 100644 --- a/tests/networking.scm +++ b/tests/networking.scm @@ -68,8 +68,7 @@ (listen-on '("127.0.0.1" "::1")) (sensor '("udcf0 correction 70000")) (constraint-from '("www.gnu.org")) - (constraints-from '("https://www.google.com/")) - (allow-large-adjustment? #t))) + (constraints-from '("https://www.google.com/")))) (test-assert "openntpd configuration generation sanity check" |