notes: 2.3.0 -> 2.3.1 (#352950)
[NixPkgs.git] / nixos / tests / containers-unified-hierarchy.nix
blob978d59e12c8a1d527e5da4db2df6be181705dcd6
1 import ./make-test-python.nix ({ pkgs, lib, ... }: {
2   name = "containers-unified-hierarchy";
3   meta = {
4     maintainers = with lib.maintainers; [ farnoy ];
5   };
7   nodes.machine = { ... }: {
8     containers = {
9       test-container = {
10         autoStart = true;
11         config = { };
12       };
13     };
14   };
16   testScript = ''
17     machine.wait_for_unit("default.target")
19     machine.succeed("echo 'stat -fc %T /sys/fs/cgroup/ | grep cgroup2fs' | nixos-container root-login test-container")
20   '';