vuls: init at 0.27.0
[NixPkgs.git] / nixos / tests / bpftune.nix
blobc17bbcd110920228cae0fdd7bc029137ec407141
1 import ./make-test-python.nix ({ lib, pkgs, ... }: {
3   name = "bpftune";
5   meta = {
6     maintainers = with lib.maintainers; [ nickcao ];
7   };
9   nodes = {
10     machine = { pkgs, ... }: {
11       services.bpftune.enable = true;
12     };
13   };
15   testScript = ''
16     machine.wait_for_unit("bpftune.service")
17     machine.wait_for_console_text("bpftune works")
18   '';