about summary refs log tree commit diff
path: root/nixos/tests/kexec.nix
blob: b8da332b919b453c9f12a5a5b4f2f9568200a82e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Test whether fast reboots via kexec work.

{ pkgs, ... }:

{

  machine = { config, pkgs, ... }:
    { virtualisation.vlans = [ ]; };

  testScript =
    ''
      $machine->waitForUnit("multi-user.target");
      $machine->execute("systemctl kexec &");
      $machine->{connected} = 0;
      $machine->waitForUnit("multi-user.target");
    '';

}