mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-24 15:36:27 +00:00
file_copy: Fix manifest
This commit is contained in:
parent
e961438904
commit
ed6ca6dd6e
1 changed files with 30 additions and 23 deletions
|
@ -7,31 +7,38 @@ properties:
|
||||||
properties:
|
properties:
|
||||||
mkdirs:
|
mkdirs:
|
||||||
items:
|
items:
|
||||||
|
type: object
|
||||||
|
properties:
|
||||||
dir:
|
dir:
|
||||||
$ref: '#/definitions/absolute_path'
|
type: string
|
||||||
permissions:
|
permissions:
|
||||||
type: string
|
type: string
|
||||||
owner:
|
owner:
|
||||||
type: string
|
type: string
|
||||||
group:
|
group:
|
||||||
type: string
|
type: string
|
||||||
|
required: [dir]
|
||||||
|
additionalProperties: false
|
||||||
|
|
||||||
files:
|
files:
|
||||||
|
type: array
|
||||||
|
minItems: 1
|
||||||
items:
|
items:
|
||||||
|
type: object
|
||||||
|
properties:
|
||||||
src:
|
src:
|
||||||
$ref: '#/definitions/absolute_path'
|
type: string
|
||||||
dst:
|
dst:
|
||||||
$ref: '#/definitions/absolute_path'
|
type: string
|
||||||
permissions:
|
permissions:
|
||||||
type: string
|
type: string
|
||||||
owner:
|
owner:
|
||||||
type: string
|
type: string
|
||||||
group:
|
group:
|
||||||
type: string
|
type: string
|
||||||
minItems: 1
|
required: [src, dst]
|
||||||
type: array
|
additionalProperties: false
|
||||||
required:
|
|
||||||
- src
|
|
||||||
- dst
|
|
||||||
required:
|
required:
|
||||||
- files
|
- files
|
||||||
type: object
|
type: object
|
||||||
|
|
Loading…
Add table
Reference in a new issue