From 6b92fa00c13bd63fe933e07eee131dc0ba70b54b Mon Sep 17 00:00:00 2001 From: Wim de With Date: Sun, 29 Mar 2026 19:14:52 +0200 Subject: [PATCH] nixosTests.dolibarr: fix test regression In 401e2b5e843b6a39f90a3649d9289e8cf27101b7, these sanity check curl commands were uncommented. Since this scripted install process is rather fragile, these requests change some internal state which in turn breaks the installer, because the conf.php file does not get written properly. Note that these lines have always been commented from the first commit (c2563fe47629b32fd3d2505030d6b44ac2f07736) until they were uncommented and broke the test. --- nixos/tests/dolibarr.nix | 3 --- 1 file changed, 3 deletions(-) diff --git a/nixos/tests/dolibarr.nix b/nixos/tests/dolibarr.nix index 97ee0ebc7bb0..1680a88e4029 100644 --- a/nixos/tests/dolibarr.nix +++ b/nixos/tests/dolibarr.nix @@ -61,9 +61,6 @@ h2o_postgresql.wait_for_open_port(80) for machine in (nginx_mysql, h2o_postgresql): - # Sanity checks on URLs. - machine.succeed("curl -fL http://localhost/index.php") - machine.succeed("curl -fL http://localhost/") # Perform installation. machine.succeed('curl -fL -X POST http://localhost/install/check.php -F selectlang=auto') machine.succeed('curl -fL -X POST http://localhost/install/fileconf.php -F selectlang=auto')