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.
This commit is contained in:
Ondřej Budai 2023-03-15 14:48:00 +01:00 committed by Simon de Vlieger
parent 7cd36f9797
commit ce196f287c

View file

@ -32,6 +32,7 @@ SCHEMA = """
},
"basearch": {
"type": "string",
"default": "x86_64",
"description": "The basic architecture param to supply to the template"
},
"product": {