mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-22 18:00:35 +00:00
24 lines
544 B
YAML
24 lines
544 B
YAML
---
|
|
$schema: http://json-schema.org/draft-04/schema#
|
|
title: Expand root plugin manifest
|
|
type: object
|
|
properties:
|
|
plugins:
|
|
type: object
|
|
properties:
|
|
expand_root:
|
|
type: object
|
|
properties:
|
|
filesystem_type:
|
|
enum:
|
|
- ext2
|
|
- ext3
|
|
- ext4
|
|
- xfs
|
|
root_device: {type: string}
|
|
root_partition: {type: integer}
|
|
required:
|
|
- filesystem_type
|
|
- root_device
|
|
- root_partition
|
|
additionalProperties: false
|