Skip to content

Commit

Permalink
reformat
Browse files Browse the repository at this point in the history
  • Loading branch information
Radvendii committed Oct 8, 2024
1 parent 297e8ea commit 0a0f92c
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions nixos/tests/nixos-test-driver/interactive-redeploy.nix
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,12 @@ let
{
environment.etc."custom-test-marker".text = "test-0";
environment.systemPackages = with pkgs; [ getent ];
virtualisation.vlans = [ 1 2 ];
virtualisation.vlans = [
1
2
];
};
nodes.dud = {};
nodes.dud = { };
testScript = ''
start_all()
machine.wait_for_unit("multi-user.target")
Expand All @@ -35,7 +38,10 @@ let
{
environment.etc."custom-test-marker".text = "test-1";
environment.systemPackages = with pkgs; [ getent ];
virtualisation.vlans = [ 1 3 ];
virtualisation.vlans = [
1
3
];
};
testScript = ''
start_all()
Expand Down

0 comments on commit 0a0f92c

Please sign in to comment.