vuls: init at 0.27.0 (#348530)
[NixPkgs.git] / nixos / tests / chrony.nix
blob9582ab14bb8f1239a39ccda14f5cdeca7bcc04fb
1 import ./make-test-python.nix ({ lib, ... }:
3   name = "chrony";
5   meta = {
6     maintainers = with lib.maintainers; [ fpletz ];
7   };
9   nodes = {
10     machine = {
11       services.chrony.enable = true;
13       specialisation.hardened.configuration = {
14         services.chrony.enableMemoryLocking = true;
15         environment.memoryAllocator.provider = "graphene-hardened";
16       };
17     };
18   };
20   testScript = ''
21     machine.start()
22     machine.wait_for_unit('multi-user.target')
23     machine.succeed('systemctl is-active chronyd.service')
24     machine.succeed('/run/booted-system/specialisation/hardened/bin/switch-to-configuration test')
25     machine.succeed('systemctl restart chronyd.service')
26     machine.wait_for_unit('chronyd.service')
27   '';