From be68830c4440948f200b074e487bdd548e43ef06 Mon Sep 17 00:00:00 2001 From: Christian Kellner Date: Fri, 24 Apr 2020 19:04:48 +0200 Subject: [PATCH] stages/ostree: fix schema for kernel_opts The `kernel_opts` option is a array of strings not a single string. --- stages/org.osbuild.ostree | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/stages/org.osbuild.ostree b/stages/org.osbuild.ostree index 9a888ab4..afcc87d7 100755 --- a/stages/org.osbuild.ostree +++ b/stages/org.osbuild.ostree @@ -54,7 +54,11 @@ STAGE_OPTS = """ }, "kernel_opts": { "description": "Additional kernel command line options", - "type": "string" + "type": "array", + "items": { + "description": "A single kernel command line option", + "type": "string" + } }, "ref": { "description": "OStree ref to create and use for deployment",