From ce196f287c649a13c86b2903e64faa437d2d9750 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Budai?= Date: Wed, 15 Mar 2023 14:48:00 +0100 Subject: [PATCH] stages/lorax-script: add missing default basearch to the schema The code uses x86_64 as a default, see: basearch = options.get("basearch", "x86_64") Let's declare that explicitly in the schema to prevent any confusion. --- stages/org.osbuild.lorax-script | 1 + 1 file changed, 1 insertion(+) diff --git a/stages/org.osbuild.lorax-script b/stages/org.osbuild.lorax-script index 1436893e..68952cfc 100755 --- a/stages/org.osbuild.lorax-script +++ b/stages/org.osbuild.lorax-script @@ -32,6 +32,7 @@ SCHEMA = """ }, "basearch": { "type": "string", + "default": "x86_64", "description": "The basic architecture param to supply to the template" }, "product": {