nixosTests.nginx*: nginxUnstable -> nginxMainline

Stop using the old `nginxUnstable` alias, which is invalid in tests
since 3edde6562e.
launchpad/nixpkgs/master
talyz 3 years ago
parent b7749c7671
commit a86853501a
No known key found for this signature in database
GPG Key ID: 2DED2151F4671A2B
  1. 2
      nixos/tests/nginx-variants.nix
  2. 4
      nixos/tests/nginx.nix

@ -29,5 +29,5 @@ builtins.listToAttrs (
};
}
)
[ "nginxStable" "nginxUnstable" "nginxShibboleth" "openresty" "tengine" ]
[ "nginxStable" "nginxMainline" "nginxShibboleth" "openresty" "tengine" ]
)

@ -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 = ";;;";
};
};

Loading…
Cancel
Save