diff options
author | Leo Famulari <leo@famulari.name> | 2021-04-23 14:50:15 -0400 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2021-12-28 15:26:39 -0500 |
commit | 2842a42b518227607fed4470b0de1c84e3511beb (patch) | |
tree | 1a192b65329ae72d5f6e1c562faacef33c0662e2 /gnu/tests | |
parent | 029f8d7c120f80475aee6100e4f682bc7ab8f1f9 (diff) | |
download | guix-2842a42b518227607fed4470b0de1c84e3511beb.tar.gz |
installer: Recommend 'ntp-service-type' for non-graphical systems.
We had several bug reports with a root cause of "the clock was incorrect" from users who used the installer to install a non-graphical Guix System. * gnu/installer/services.scm (%system-services): Add the ntp-service-type. * gnu/installer/newt/services.scm (run-system-administration-cbt-page): New variable. (run-services-page): Use run-system-administration-cbt-page when not installing a desktop. * gnu/installer/tests.scm (choose-services): Add and use a choose-misc-service? procedure. * gnu/tests/install.scm (installation-target-os-for-gui-tests)<services>: Add ntp-service-type.
Diffstat (limited to 'gnu/tests')
-rw-r--r-- | gnu/tests/install.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/tests/install.scm b/gnu/tests/install.scm index 154f98b2e1..ae8c6051f1 100644 --- a/gnu/tests/install.scm +++ b/gnu/tests/install.scm @@ -1685,8 +1685,9 @@ build (current-guix) and then store a couple of full system images.") (list (swap-space (target (uuid "11111111-2222-3333-4444-123456789abc")))))) - (services (cons (service dhcp-client-service-type) - (operating-system-user-services %minimal-os-on-vda))))) + (services (cons* (service dhcp-client-service-type) + (service ntp-service-type) + (operating-system-user-services %minimal-os-on-vda))))) (define* (installation-target-desktop-os-for-gui-tests #:key (encrypted? #f)) |