summaryrefslogtreecommitdiff
path: root/tests/programs-ssh.nix
diff options
context:
space:
mode:
authorsbh69840 <sbh69840@gmail.com>2023-05-14 13:20:13 +0530
committersbh69840 <sbh69840@gmail.com>2023-05-14 13:20:13 +0530
commit3d22883cdb4226306be7583f5513b3ca23a72e24 (patch)
tree35b1fbeff71d5a722ebc7030859accb6abda4b75 /tests/programs-ssh.nix
parentf781cb0ac5ea2daa5183b8df8f4de4ef0747f440 (diff)
add tests
Diffstat (limited to 'tests/programs-ssh.nix')
-rw-r--r--tests/programs-ssh.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/programs-ssh.nix b/tests/programs-ssh.nix
index 71f285c..2928cfb 100644
--- a/tests/programs-ssh.nix
+++ b/tests/programs-ssh.nix
@@ -6,9 +6,15 @@
publicKey = "ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAq2A7hRGmdnm9tUDbO9IDSwBK6TbQa+PXYPCPy6rbTrTtw7PHkccKrpp0yVhp5HdEIcKr6pLlVDBfOLX9QUsyCOV0wzfjIJNlGEYsdlLJizHhbn2mUjvSAHQqZETYP81eFzLQNnPHt4EVVUh7VfDESU84KezmD5QlWpXLmvU31/yMf+Se8xhHTvKSCZIFImWwoG6mbUoWf9nzpIoaSjB+weqqUUmpaaasXVal72J+UX2B+2RPW3RcT0eOzQgqlJL3RKrTJvdsjE3JEAvGq3lGHSZXy28G3skua2SmVi/w4yCE6gbODqnTWlg7+wC604ydGXA8VJiS5ap43JXiUFFAaQ==";
};
};
+ users.users.foo.openssh.authorizedKeys.keys = [ "ssh-ed25519 AAAA..." ];
test = ''
echo >&2 "checking for github.com in /etc/ssh/ssh_known_hosts"
grep 'github.com ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAq2A7hRGmdnm9tUDbO9IDSwBK6TbQa+PXYPCPy6rbTrTtw7PHkccKrpp0yVhp5HdEIcKr6pLlVDBfOLX9QUsyCOV0wzfjIJNlGEYsdlLJizHhbn2mUjvSAHQqZETYP81eFzLQNnPHt4EVVUh7VfDESU84KezmD5QlWpXLmvU31/yMf+Se8xhHTvKSCZIFImWwoG6mbUoWf9nzpIoaSjB+weqqUUmpaaasXVal72J+UX2B+2RPW3RcT0eOzQgqlJL3RKrTJvdsjE3JEAvGq3lGHSZXy28G3skua2SmVi/w4yCE6gbODqnTWlg7+wC604ydGXA8VJiS5ap43JXiUFFAaQ==' ${config.out}/etc/ssh/ssh_known_hosts
+
+ echo >&2 "checking for authorized keys for foo in /etc/ssh/authorized_keys.d/foo"
+ grep 'ssh-ed25519 AAAA...' ${config.out}/etc/ssh/authorized_keys.d/foo
+ echo >&2 "checking for authorized keys' path in /etc/ssh/sshd_config.d/101-authorized-keys.conf"
+ grep 'AuthorizedKeysFile /etc/ssh/authorized_keys.d/%u' ${config.out}/etc/ssh/sshd_config.d/101-authorized-keys.conf
'';
}