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

import ./make-test.nix  {
  name = "kexec";

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

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

}