file_copy: Fix manifest

This commit is contained in:
Nicolas Braud-Santoni 2016-02-29 18:28:35 +01:00
parent e961438904
commit ed6ca6dd6e

View file

@ -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