From 58fcbf5ab7d5aaf94ef667f62feb59202c8ff7b3 Mon Sep 17 00:00:00 2001 From: Fabian Ebner Date: Mon, 16 Nov 2020 10:22:47 +0100 Subject: [PATCH] client: expose all-file-systems option Useful to avoid the need for a long (and possibly changing) list of include-dev options in certain situations, e.g. nested ZFS file systems. The option is already implemented and seems to work as expected. The checks for virtual filesystems are not affected by this option. Signed-off-by: Fabian Ebner --- src/bin/proxmox-backup-client.rs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/bin/proxmox-backup-client.rs b/src/bin/proxmox-backup-client.rs index 54e11f08..70aba77f 100644 --- a/src/bin/proxmox-backup-client.rs +++ b/src/bin/proxmox-backup-client.rs @@ -875,6 +875,11 @@ fn keyfile_parameters(param: &Value) -> Result<(Option>, CryptMode), Err description: "Path to file.", } }, + "all-file-systems": { + type: Boolean, + description: "Include all mounted subdirectories.", + optional: true, + }, keyfile: { schema: KEYFILE_SCHEMA, optional: true,