From 1abd7768500a2de3af80cfefec89d97aa87178a9 Mon Sep 17 00:00:00 2001 From: claude-hdb Date: Sat, 11 Jul 2026 11:21:30 +0000 Subject: [PATCH] fix: preinstall the GitHub CLI in boxes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The README's auth flow tells operators to run `gh auth login`, but the cloud-init package set never installed gh — a fresh box couldn't follow its own instructions. Debian 13 ships gh natively, so a plain packages entry suffices. Co-Authored-By: Claude Fable 5 --- cloud-init/user-data.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/cloud-init/user-data.yaml b/cloud-init/user-data.yaml index 3b19d7e..bd6f2bb 100644 --- a/cloud-init/user-data.yaml +++ b/cloud-init/user-data.yaml @@ -32,6 +32,7 @@ write_files: package_update: true packages: - git + - gh - curl - ca-certificates - gnupg