From 873d5e352204a5d4ce35f79235f7d845d64fbd59 Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Mon, 27 Jun 2022 22:56:07 +0200 Subject: [PATCH] [fstab] Remove schema-entry for mountOptions These were removed from the module in commit 03f2e45605b73bc7304115e63e613497cff06e68 but later restored by a botched merge. --- src/modules/fstab/fstab.schema.yaml | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/src/modules/fstab/fstab.schema.yaml b/src/modules/fstab/fstab.schema.yaml index 62d55c180..e298a9d04 100644 --- a/src/modules/fstab/fstab.schema.yaml +++ b/src/modules/fstab/fstab.schema.yaml @@ -6,24 +6,6 @@ $id: https://calamares.io/schemas/fstab additionalProperties: false type: object properties: - mountOptions: - type: object - additionalProperties: true # we don't know which FS exist - properties: - "default": { type: string } - btrfs: { type: string } - required: [ "default" ] - ssdExtraMountOptions: - type: object - additionalProperties: true # we don't know which FS exist - properties: - ext4: { type: string } - jfs: { type: string } - xfs: { type: string } - swap: { type: string } - btrfs: { type: string } - btrfs_swap: { type: string } - efiMountOptions: { type: string } crypttabOptions: { type: string } tmpOptions: type: object @@ -43,5 +25,4 @@ properties: options: { type: string } required: [ "default" ] required: - - mountOptions - tmpOptions