diff options
Diffstat (limited to 'tests/basic')
-rwxr-xr-x | tests/basic | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/tests/basic b/tests/basic index 832b33a..3ef5c6c 100755 --- a/tests/basic +++ b/tests/basic @@ -90,6 +90,7 @@ EOF # setup monkeysphere temp gnupghome directories mkdir -p -m 750 "$MONKEYSPHERE_SYSDATADIR"/gnupg-host mkdir -p -m 700 "$MONKEYSPHERE_SYSDATADIR"/gnupg-authentication +mkdir -p -m 700 "$MONKEYSPHERE_SYSDATADIR"/authorized_keys cat <<EOF > "$MONKEYSPHERE_SYSDATADIR"/gnupg-authentication/gpg.conf primary-keyring ${MONKEYSPHERE_SYSDATADIR}/gnupg-authentication/pubring.gpg keyring ${MONKEYSPHERE_SYSDATADIR}/gnupg-host/pubring.gpg @@ -126,8 +127,11 @@ HostKey ${MONKEYSPHERE_SYSDATADIR}/ssh_host_rsa_key AuthorizedKeysFile ${MONKEYSPHERE_SYSDATADIR}/authorized_keys/%u EOF -# FIXME: teach the "server" about the testuser's key, and update the -# fake authorized_keys file for testuser! +# teach the "server" about the testuser's key +GNUPGHOME="$TEMPDIR"/testuser/.gnupg gpg --export testuser | \ + monkeysphere-server gpg-authentication-cmd --import + +monkeysphere-server update-users testuser # launch test sshd with the new host key. echo "### starting sshd..." |