mirror of
https://gitlab.com/simple-nixos-mailserver/nixos-mailserver.git
synced 2025-02-10 09:13:09 +05:00
tests: fix renamed options warnings
This commit is contained in:
parent
ade37b2765
commit
6b425d13f5
@ -84,8 +84,8 @@ pkgs.nixosTest {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
client = { nodes, config, pkgs, ... }: let
|
client = { nodes, config, pkgs, ... }: let
|
||||||
serverIP = nodes.server.config.networking.primaryIPAddress;
|
serverIP = nodes.server.networking.primaryIPAddress;
|
||||||
clientIP = nodes.client.config.networking.primaryIPAddress;
|
clientIP = nodes.client.networking.primaryIPAddress;
|
||||||
grep-ip = pkgs.writeScriptBin "grep-ip" ''
|
grep-ip = pkgs.writeScriptBin "grep-ip" ''
|
||||||
#!${pkgs.stdenv.shell}
|
#!${pkgs.stdenv.shell}
|
||||||
echo grep '${clientIP}' "$@" >&2
|
echo grep '${clientIP}' "$@" >&2
|
||||||
|
@ -87,8 +87,8 @@ pkgs.nixosTest {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
client = { nodes, config, pkgs, ... }: let
|
client = { nodes, config, pkgs, ... }: let
|
||||||
serverIP = nodes.server.config.networking.primaryIPAddress;
|
serverIP = nodes.server.networking.primaryIPAddress;
|
||||||
clientIP = nodes.client.config.networking.primaryIPAddress;
|
clientIP = nodes.client.networking.primaryIPAddress;
|
||||||
grep-ip = pkgs.writeScriptBin "grep-ip" ''
|
grep-ip = pkgs.writeScriptBin "grep-ip" ''
|
||||||
#!${pkgs.stdenv.shell}
|
#!${pkgs.stdenv.shell}
|
||||||
echo grep '${clientIP}' "$@" >&2
|
echo grep '${clientIP}' "$@" >&2
|
||||||
|
@ -20,7 +20,7 @@ pkgs.nixosTest {
|
|||||||
|
|
||||||
services.openssh = {
|
services.openssh = {
|
||||||
enable = true;
|
enable = true;
|
||||||
permitRootLogin = "yes";
|
settings.PermitRootLogin = "yes";
|
||||||
};
|
};
|
||||||
|
|
||||||
environment.systemPackages = [
|
environment.systemPackages = [
|
||||||
|
Loading…
Reference in New Issue
Block a user