mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-24 07:26:29 +00:00
Fix guest additions path check in vbox schema
This commit is contained in:
parent
57c2522c7b
commit
3de0aceb65
1 changed files with 7 additions and 2 deletions
|
@ -3,10 +3,11 @@ $schema: http://json-schema.org/draft-04/schema#
|
||||||
title: VirtualBox manifest
|
title: VirtualBox manifest
|
||||||
type: object
|
type: object
|
||||||
properties:
|
properties:
|
||||||
bootstrapper:
|
provider:
|
||||||
type: object
|
type: object
|
||||||
properties:
|
properties:
|
||||||
guest_additions: {type: string}
|
guest_additions:
|
||||||
|
$ref: '#/definitions/absolute_path'
|
||||||
system:
|
system:
|
||||||
type: object
|
type: object
|
||||||
properties:
|
properties:
|
||||||
|
@ -34,3 +35,7 @@ properties:
|
||||||
- msdos
|
- msdos
|
||||||
- gpt
|
- gpt
|
||||||
required: [backing]
|
required: [backing]
|
||||||
|
definitions:
|
||||||
|
absolute_path:
|
||||||
|
type: string
|
||||||
|
pattern: ^/[^\0]+$
|
||||||
|
|
Loading…
Add table
Reference in a new issue