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
|
||||
type: object
|
||||
properties:
|
||||
bootstrapper:
|
||||
provider:
|
||||
type: object
|
||||
properties:
|
||||
guest_additions: {type: string}
|
||||
guest_additions:
|
||||
$ref: '#/definitions/absolute_path'
|
||||
system:
|
||||
type: object
|
||||
properties:
|
||||
|
@ -34,3 +35,7 @@ properties:
|
|||
- msdos
|
||||
- gpt
|
||||
required: [backing]
|
||||
definitions:
|
||||
absolute_path:
|
||||
type: string
|
||||
pattern: ^/[^\0]+$
|
||||
|
|
Loading…
Add table
Reference in a new issue