From bd19522778257e41d23ac15a5adfc35455f9e310 Mon Sep 17 00:00:00 2001 From: Raúl Benencia Date: Fri, 5 Jun 2026 18:04:23 -0300 Subject: Update example templates to modern distros Replace CoreOS (EOL) with Flatcar Linux using Ignition v3. Replace CentOS (EOL) with AlmaLinux using a kickstart template. Update Ubuntu templates to jammy with current archive mirror paths. Update Debian template to bookworm. Drop CoreOS cloud-config; add Flatcar Ignition example. Update mappings.yaml, test configs, fixtures, and smoke test accordingly. --- test/integ-test/frontend_smoke.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/integ-test/frontend_smoke.js') diff --git a/test/integ-test/frontend_smoke.js b/test/integ-test/frontend_smoke.js index e9ac50a..bd7be63 100644 --- a/test/integ-test/frontend_smoke.js +++ b/test/integ-test/frontend_smoke.js @@ -370,7 +370,7 @@ async function run() { const mac = document.getElementById('mac'); const target = document.getElementById('target'); mac.value = '${smokeMac}'; - target.value = 'coreos.ipxe'; + target.value = 'flatcar.ipxe'; target.dispatchEvent(new Event('change', { bubbles: true })); return true; })()`); @@ -424,7 +424,7 @@ async function run() { ); const eventText = await evaluate(cdp, sessionID, 'document.querySelector(".event-log").textContent'); - if (!eventText.includes('A user selected coreos.ipxe')) { + if (!eventText.includes('A user selected flatcar.ipxe')) { throw new Error('Event history did not render user selection: ' + eventText); } -- cgit v1.2.3