aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/nixos/tests/sssd.nix
blob: 4c6ca86c74c8fb127f822430979371d73e991cb3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import ./make-test-python.nix ({ pkgs, ... }:

{
  name = "sssd";
  meta = with pkgs.stdenv.lib.maintainers; {
    maintainers = [ bbigras ];
  };
  machine = { pkgs, ... }: {
    services.sssd.enable = true;
  };

  testScript = ''
      start_all()
      machine.wait_for_unit("multi-user.target")
      machine.wait_for_unit("sssd.service")
    '';
})