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:
|
||||
mkdirs:
|
||||
items:
|
||||
type: object
|
||||
properties:
|
||||
dir:
|
||||
$ref: '#/definitions/absolute_path'
|
||||
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:
|
||||
$ref: '#/definitions/absolute_path'
|
||||
type: string
|
||||
dst:
|
||||
$ref: '#/definitions/absolute_path'
|
||||
type: string
|
||||
permissions:
|
||||
type: string
|
||||
owner:
|
||||
type: string
|
||||
group:
|
||||
type: string
|
||||
minItems: 1
|
||||
type: array
|
||||
required:
|
||||
- src
|
||||
- dst
|
||||
required: [src, dst]
|
||||
additionalProperties: false
|
||||
|
||||
required:
|
||||
- files
|
||||
type: object
|
||||
|
|
Loading…
Add table
Reference in a new issue