guix_mirror_bot pushed a commit to branch wip-fix-system-tests in repository guix.
commit 3c9b8e0669c189894f6b32d79b6761675f499a2a Author: Mathieu Othacehe <[email protected]> AuthorDate: Sat Oct 18 16:18:30 2025 +0200 Revert "installer: wait-service-online: Allow user to proceed if offline." This reverts commit 0b35df4c8b9f1cc80eaadff0e0444e16cfa5375f. --- gnu/installer/newt/network.scm | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/gnu/installer/newt/network.scm b/gnu/installer/newt/network.scm index b29a475fba..0b91bda5f8 100644 --- a/gnu/installer/newt/network.scm +++ b/gnu/installer/newt/network.scm @@ -155,15 +155,11 @@ FULL-VALUE tentatives, spaced by 1 second." full-value (+ value 1)))) (unless (online?) - (case (choice-window - (G_ "Internet access") - (G_ "Continue") - (G_ "Try again?") - (G_ " -The selected network does not seem to provide access to the \ -Internet. The install process requires Internet access. \ -Do you want to continue anyway?")) - ((2) (abort-to-prompt 'installer-step 'abort)))))) + (run-error-page + (G_ "The selected network does not provide access to the \ +Internet and the Guix substitute server, please try again.") + (G_ "Connection error")) + (abort-to-prompt 'installer-step 'abort)))) (define (run-network-page) "Run a page to allow the user to configure connman so that it can access the
