Files
Dan GuidoandClaude c9f0be9ac9 Fix SSH configuration indentation in cloud-init template
The sshd_config file was being written with incorrect indentation due to
the indent filter having first=True, which added 6 spaces to the first
line of the template. This caused SSH daemon to fail parsing the config
file, preventing SSH connections on the configured port (4160).

Changed indent(width=6, first=True) to indent(width=6, first=False) to
ensure the SSH configuration is written without leading spaces on each
line, allowing sshd to properly parse the configuration.

Fixes SSH connection timeouts during DigitalOcean deployments.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-15 10:58:00 -04:00
..