mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-22 18:00:35 +00:00
52 lines
1.2 KiB
YAML
52 lines
1.2 KiB
YAML
---
|
|
$schema: http://json-schema.org/draft-04/schema#
|
|
properties:
|
|
plugins:
|
|
properties:
|
|
file_copy:
|
|
properties:
|
|
mkdirs:
|
|
items:
|
|
type: object
|
|
properties:
|
|
dir:
|
|
type: string
|
|
permissions:
|
|
type: string
|
|
owner:
|
|
type: string
|
|
group:
|
|
type: string
|
|
required: [dir]
|
|
additionalProperties: false
|
|
|
|
files:
|
|
type: array
|
|
minItems: 1
|
|
items:
|
|
type: object
|
|
properties:
|
|
src:
|
|
type: string
|
|
dst:
|
|
type: string
|
|
permissions:
|
|
type: string
|
|
owner:
|
|
type: string
|
|
group:
|
|
type: string
|
|
required: [src, dst]
|
|
additionalProperties: false
|
|
|
|
required:
|
|
- files
|
|
type: object
|
|
additionalProperties: false
|
|
required:
|
|
- file_copy
|
|
type: object
|
|
required:
|
|
- plugins
|
|
title: File copy plugin manifest
|
|
type: object
|