mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-24 07:26:29 +00:00
37 lines
657 B
YAML
37 lines
657 B
YAML
![]() |
---
|
||
|
$schema: http://json-schema.org/draft-04/schema#
|
||
|
title: VirtualBox manifest
|
||
|
type: object
|
||
|
properties:
|
||
|
bootstrapper:
|
||
|
type: object
|
||
|
properties:
|
||
|
guest_additions: {type: string}
|
||
|
system:
|
||
|
type: object
|
||
|
properties:
|
||
|
bootloader:
|
||
|
type: string
|
||
|
enum:
|
||
|
- grub
|
||
|
- extlinux
|
||
|
volume:
|
||
|
type: object
|
||
|
properties:
|
||
|
backing:
|
||
|
type: string
|
||
|
enum:
|
||
|
- raw
|
||
|
- vdi
|
||
|
- vmdk
|
||
|
partitions:
|
||
|
type: object
|
||
|
properties:
|
||
|
type:
|
||
|
type: string
|
||
|
enum:
|
||
|
- none
|
||
|
- msdos
|
||
|
- gpt
|
||
|
required: [backing]
|