[fstab] Fix schema for new tmpOptions settings
This commit is contained in:
parent
55f1df9563
commit
fb910d7c41
@ -10,9 +10,9 @@ properties:
|
|||||||
type: object
|
type: object
|
||||||
additionalProperties: true # we don't know which FS exist
|
additionalProperties: true # we don't know which FS exist
|
||||||
properties:
|
properties:
|
||||||
default: { type: string }
|
"default": { type: string }
|
||||||
btrfs: { type: string }
|
btrfs: { type: string }
|
||||||
required: [ default ]
|
required: [ "default" ]
|
||||||
ssdExtraMountOptions:
|
ssdExtraMountOptions:
|
||||||
type: object
|
type: object
|
||||||
additionalProperties: true # we don't know which FS exist
|
additionalProperties: true # we don't know which FS exist
|
||||||
@ -29,18 +29,19 @@ properties:
|
|||||||
type: object
|
type: object
|
||||||
additionalProperties: false
|
additionalProperties: false
|
||||||
properties:
|
properties:
|
||||||
default:
|
"default":
|
||||||
type: object
|
type: object
|
||||||
additionalProperties: false
|
additionalProperties: false
|
||||||
properties:
|
properties:
|
||||||
tmpfs: { type: bool }
|
tmpfs: { type: boolean }
|
||||||
options: { type: string }
|
options: { type: string }
|
||||||
ssd:
|
ssd:
|
||||||
type: object
|
type: object
|
||||||
additionalProperties: false
|
additionalProperties: false
|
||||||
properties:
|
properties:
|
||||||
tmpfs: { type: bool }
|
tmpfs: { type: boolean }
|
||||||
options: { type: string }
|
options: { type: string }
|
||||||
|
required: [ "default" ]
|
||||||
required:
|
required:
|
||||||
- mountOptions
|
- mountOptions
|
||||||
- tmpOptions: default
|
- tmpOptions
|
||||||
|
Loading…
Reference in New Issue
Block a user