mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-15 02:36:16 +02:00
tests/nixos/fetchurl: drop unused variables
This commit is contained in:
parent
c1ecf0bee9
commit
410853ddcf
1 changed files with 3 additions and 3 deletions
|
@ -1,7 +1,7 @@
|
||||||
# Test whether builtin:fetchurl properly performs TLS certificate
|
# Test whether builtin:fetchurl properly performs TLS certificate
|
||||||
# checks on HTTPS servers.
|
# checks on HTTPS servers.
|
||||||
|
|
||||||
{ lib, config, pkgs, ... }:
|
{ pkgs, ... }:
|
||||||
|
|
||||||
let
|
let
|
||||||
|
|
||||||
|
@ -25,7 +25,7 @@ in
|
||||||
name = "nss-preload";
|
name = "nss-preload";
|
||||||
|
|
||||||
nodes = {
|
nodes = {
|
||||||
machine = { lib, pkgs, ... }: {
|
machine = { pkgs, ... }: {
|
||||||
services.nginx = {
|
services.nginx = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
||||||
|
@ -60,7 +60,7 @@ in
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
testScript = { nodes, ... }: ''
|
testScript = ''
|
||||||
machine.wait_for_unit("nginx")
|
machine.wait_for_unit("nginx")
|
||||||
machine.wait_for_open_port(443)
|
machine.wait_for_open_port(443)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue