stages/first-boot: fix schema

The correct type for the boolean wait_for_network option is
`boolean` not `bool`.
This commit is contained in:
Christian Kellner 2020-04-24 19:14:48 +02:00
parent be68830c44
commit 0c01a30657

View file

@ -29,7 +29,7 @@ STAGE_OPTS = """
}
},
"wait_for_network": {
"type": "bool",
"type": "boolean",
"description": "Wait for the network to be up before executing",
"default": false
}