4 import ../make-test-python.nix ({ pkgs, ... }: {
5 name = "pam-file-contents";
7 nodes.machine = { ... }: {
8 imports = [ ../../modules/profiles/minimal.nix ];
10 security.krb5.enable = true;
22 testScript = builtins.replaceStrings
23 [ "@@pam_ccreds@@" "@@pam_krb5@@" ]
24 [ pkgs.pam_ccreds.outPath pkgs.pam_krb5.outPath ]
25 (builtins.readFile ./test_chfn.py);