29 lines
860 B
YAML
29 lines
860 B
YAML
# SPDX-FileCopyrightText: 2020 Adriaan de Groot <groot@kde.org>
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
---
|
|
$schema: https://json-schema.org/schema#
|
|
$id: https://calamares.io/schemas/fstab
|
|
additionalProperties: false
|
|
type: object
|
|
properties:
|
|
crypttabOptions: { type: string }
|
|
tmpOptions:
|
|
type: object
|
|
additionalProperties: false
|
|
properties:
|
|
"default":
|
|
type: object
|
|
additionalProperties: false
|
|
properties:
|
|
tmpfs: { type: boolean }
|
|
options: { type: string }
|
|
ssd:
|
|
type: object
|
|
additionalProperties: false
|
|
properties:
|
|
tmpfs: { type: boolean }
|
|
options: { type: string }
|
|
required: [ "default" ]
|
|
required:
|
|
- tmpOptions
|