From d482cf4d0cf77a599b6d009d4b95a956060a03a4 Mon Sep 17 00:00:00 2001 From: cproudlock Date: Fri, 13 Feb 2026 20:53:28 -0500 Subject: [PATCH] Skip autoinstall confirmation prompt and disable cloud-init post-install Adds interactive-sections: [] to avoid the "Continue with autoinstall?" prompt, and disables cloud-init on the installed system to prevent boot delays. Co-Authored-By: Claude Opus 4.6 --- autoinstall/user-data | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/autoinstall/user-data b/autoinstall/user-data index 8a745e0..1f68515 100644 --- a/autoinstall/user-data +++ b/autoinstall/user-data @@ -1,6 +1,7 @@ #cloud-config autoinstall: version: 1 + interactive-sections: [] # Locale, keyboard, timezone locale: en_US.UTF-8 @@ -102,6 +103,9 @@ autoinstall: ' - curtin in-target --target=/target -- chmod +x /etc/rc.local + # Disable cloud-init on the installed system (no longer needed after autoinstall) + - curtin in-target --target=/target -- touch /etc/cloud/cloud-init.disabled + user-data: disable_root: false