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