From ecaf293c4f4b6a80574af57d69a07692dbd2df3a Mon Sep 17 00:00:00 2001 From: Raito Bezarius Date: Thu, 30 Apr 2026 15:55:32 +0200 Subject: [PATCH] releng/keys: update the way to receive the ephemeral key I don't understand how `ssh -l lix-releng` is supposed to work if it doesn't say which host to target. Change-Id: I791f3f3f49ecd5884c9e86b5d3b617fc139e031f Signed-off-by: Raito Bezarius --- releng/keys.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/releng/keys.py b/releng/keys.py index 6e285121c..d41150c33 100644 --- a/releng/keys.py +++ b/releng/keys.py @@ -14,7 +14,7 @@ def get_ephemeral_key( env.docs_bucket.removeprefix('s3://'), ] if env.s3_ssh_host is not None: - command = ['ssh', '-l', env.s3_ssh_user, *command] + command = ['ssh', f'{env.s3_ssh_user}@{env.s3_ssh_host}', *command] output = subprocess.check_output(command) d = json.loads(output.decode()) return environment.S3Credentials(name=d['name'],