summary refs log tree commit diff
path: root/nixos/tests/nginx.nix
diff options
context:
space:
mode:
authortalyz <kim.lindberger@gmail.com>2021-06-05 00:26:01 +0200
committertalyz <kim.lindberger@gmail.com>2021-06-05 18:44:48 +0200
commita86853501a339f95765a6763e9c409f374606faa (patch)
tree1d3840b2a8ac53d02fd9945eb04d5c6bc8d271d8 /nixos/tests/nginx.nix
parentb7749c76715ba96727f7a12bc2514ddfa6847813 (diff)
downloadnixpkgs-a86853501a339f95765a6763e9c409f374606faa.tar
nixpkgs-a86853501a339f95765a6763e9c409f374606faa.tar.gz
nixpkgs-a86853501a339f95765a6763e9c409f374606faa.tar.bz2
nixpkgs-a86853501a339f95765a6763e9c409f374606faa.tar.lz
nixpkgs-a86853501a339f95765a6763e9c409f374606faa.tar.xz
nixpkgs-a86853501a339f95765a6763e9c409f374606faa.tar.zst
nixpkgs-a86853501a339f95765a6763e9c409f374606faa.zip
nixosTests.nginx*: nginxUnstable -> nginxMainline
Stop using the old `nginxUnstable` alias, which is invalid in tests
since 3edde6562e19698da69a499881e0a2e4f5a497a2.
Diffstat (limited to 'nixos/tests/nginx.nix')
-rw-r--r--nixos/tests/nginx.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/tests/nginx.nix b/nixos/tests/nginx.nix
index 5686afcd043..d9d073822a1 100644
--- a/nixos/tests/nginx.nix
+++ b/nixos/tests/nginx.nix
@@ -56,11 +56,11 @@ import ./make-test-python.nix ({ pkgs, ... }: {
       };
 
       specialisation.reloadRestartSystem.configuration = {
-        services.nginx.package = pkgs.nginxUnstable;
+        services.nginx.package = pkgs.nginxMainline;
       };
 
       specialisation.reloadWithErrorsSystem.configuration = {
-        services.nginx.package = pkgs.nginxUnstable;
+        services.nginx.package = pkgs.nginxMainline;
         services.nginx.virtualHosts."!@$$(#*%".locations."~@#*$*!)".proxyPass = ";;;";
       };
     };