vuls: init at 0.27.0
[NixPkgs.git] / nixos / tests / chrony-ptp.nix
blobb2634a8cfc5c6ff416f713f2ed9b12922fb16e08
1 import ./make-test-python.nix ({ lib, ... }:
3   name = "chrony-ptp";
5   meta = {
6     maintainers = with lib.maintainers; [ gkleen ];
7   };
9   nodes = {
10     qemuGuest = { lib, ... }: {
11       boot.kernelModules = [ "ptp_kvm" ];
13       services.chrony = {
14         enable = true;
15         extraConfig = ''
16           refclock PHC /dev/ptp_kvm poll 2 dpoll -2 offset 0 stratum 3
17         '';
18       };
19     };
20   };
22   testScript = ''
23     start_all()
25     qemuGuest.wait_for_unit('multi-user.target')
26     qemuGuest.succeed('systemctl is-active chronyd.service')
27   '';