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:
parent
6d2a3cbdea
commit
be68830c44
1 changed files with 5 additions and 1 deletions
|
|
@ -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",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue