2020-08-21 19:43:53 +02:00
|
|
|
# SPDX-FileCopyrightText: 2020 Adriaan de Groot <groot@kde.org>
|
|
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
2020-06-16 16:06:56 +02:00
|
|
|
---
|
|
|
|
$schema: https://json-schema.org/schema#
|
|
|
|
$id: https://calamares.io/schemas/unpackfs
|
|
|
|
additionalProperties: false
|
|
|
|
type: object
|
|
|
|
properties:
|
2020-08-12 10:04:05 +02:00
|
|
|
unpack:
|
|
|
|
type: array
|
|
|
|
items:
|
|
|
|
type: object
|
|
|
|
additionalProperties: false
|
|
|
|
properties:
|
|
|
|
source: { type: string }
|
|
|
|
sourcefs: { type: string }
|
|
|
|
destination: { type: string }
|
|
|
|
excludeFile: { type: string }
|
|
|
|
exclude: { type: array, items: { type: string } }
|
|
|
|
required: [ source , sourcefs, destination ]
|