stages/ostree: fix schema for kernel_opts

The `kernel_opts` option is a array of strings not a single string.
This commit is contained in:
Christian Kellner 2020-04-24 19:04:48 +02:00
parent 6d2a3cbdea
commit be68830c44

View file

@ -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",