1import ./make-test-python.nix (
2 { pkgs, ... }:
3
4 {
5 name = "sssd";
6 meta = with pkgs.lib.maintainers; {
7 maintainers = [ bbigras ];
8 };
9 nodes.machine =
10 { pkgs, ... }:
11 {
12 services.sssd.enable = true;
13 };
14
15 testScript = ''
16 start_all()
17 machine.wait_for_unit("multi-user.target")
18 machine.wait_for_unit("sssd.service")
19 machine.succeed("sssctl config-check")
20 '';
21 }
22)