From 8cee7e3a593f2cc5febb7f83261a2ba349e21ac9 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 22 Mar 2026 11:18:28 +0000 Subject: [PATCH 1/2] Initial plan From 98bbc3d3589379a4b4fe52d914671ed2759287a7 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 22 Mar 2026 11:20:09 +0000 Subject: [PATCH 2/2] Fix sshd port configured test to avoid permission errors on host key files Co-authored-by: sebst <592313+sebst@users.noreply.github.com> Agent-Logs-Url: https://github.com/devcontainer-community/devcontainer-features/sessions/b1cd268d-8615-438c-9ab8-7b379702cfbf --- test/sshd/test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/sshd/test.sh b/test/sshd/test.sh index 67186db..2d13170 100644 --- a/test/sshd/test.sh +++ b/test/sshd/test.sh @@ -14,7 +14,7 @@ source dev-container-features-test-lib check "sshd installed" which sshd check "openssh version" bash -c "sshd -V 2>&1 | grep -i openssh" -check "sshd port configured" bash -c "grep -r 'Port 2222' /etc/ssh/" +check "sshd port configured" bash -c "grep -r 'Port 2222' /etc/ssh/sshd_config /etc/ssh/sshd_config.d/" check "sshd running" bash -c "pgrep sshd || ( mkdir -p /run/sshd && /usr/sbin/sshd && sleep 1 && pgrep sshd )" check "sshd listening on port 2222" bash -c "ss -tln | grep ':2222'"