From b5cfa5109ecc81d0b7671d7b65494cf9f6dafdfc Mon Sep 17 00:00:00 2001 From: Chrysostomus Date: Tue, 26 Jan 2021 21:34:11 +0200 Subject: [PATCH] Add schema definition --- src/modules/mount/mount.schema.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/modules/mount/mount.schema.yaml b/src/modules/mount/mount.schema.yaml index 2d5e4d4a0..fb5dfb69c 100644 --- a/src/modules/mount/mount.schema.yaml +++ b/src/modules/mount/mount.schema.yaml @@ -29,3 +29,12 @@ properties: mountPoint: { type: string } options: { type: string } required: [ device, mountPoint ] + btrfsSubvolumes: + type: array + items: + type: object + additionalProperties: false + properties: + mountPoint: { type: string } + subvolume: { type: string } + required: [ subvolume, mountPoint ]