From 4ef5e3b9a285c51317c7a466bdda384e1332a0fe Mon Sep 17 00:00:00 2001 From: Jake Goldsborough Date: Mon, 1 Jun 2026 17:53:49 -0700 Subject: [PATCH] Remove deprecated sshd and web.ipv6 templates Both files were marked `# TODO(2026-01-01): Remove this file` for over five months. They emit deprecation warnings when included but no longer provide any functionality: - sshd was removed as a supported feature - IPv6 is now enabled by default when available --- templates/sshd.template.yml | 6 ------ templates/web.ipv6.template.yml | 6 ------ 2 files changed, 12 deletions(-) delete mode 100644 templates/sshd.template.yml delete mode 100644 templates/web.ipv6.template.yml diff --git a/templates/sshd.template.yml b/templates/sshd.template.yml deleted file mode 100644 index b8f3f1587..000000000 --- a/templates/sshd.template.yml +++ /dev/null @@ -1,6 +0,0 @@ -# This file is deprecated; you can remove it from your app.yml -# TODO(2026-01-01): Remove this file -run: - - exec: |- - echo "Deprecation warning: sshd is no longer supported" - echo "Remove templates/sshd.template.yml from your containers/*.yml files" diff --git a/templates/web.ipv6.template.yml b/templates/web.ipv6.template.yml deleted file mode 100644 index c429fc31c..000000000 --- a/templates/web.ipv6.template.yml +++ /dev/null @@ -1,6 +0,0 @@ -# This file is deprecated; you can remove it from your app.yml -# TODO(2026-01-01): Remove this file -run: - - exec: |- - echo "Deprecation warning: IPv6 is enabled by default when possible" - echo "Remove templates/web.ipv6.template.yml from your containers/*.yml files"