backup site: remove the local disk provider

we already have ext4, xfs, mountpoint and filesystem to cover all cases

fixes #879
This commit is contained in:
Girish Ramakrishnan
2026-03-30 14:32:11 +02:00
parent e23abd69b5
commit 8b138d14bb
10 changed files with 53 additions and 25 deletions

View File

@@ -124,7 +124,7 @@ async function onSubmit() {
data.mountOptions.privateKey = providerConfig.value.mountOptionPrivateKey;
data.preserveAttributes = true;
}
} else if (provider.value === 'ext4' || provider.value === 'xfs' || provider.value === 'disk') {
} else if (provider.value === 'ext4' || provider.value === 'xfs') {
data.mountOptions.diskPath = providerConfig.value.mountOptionDiskPath;
data.preserveAttributes = true;
} else if (provider.value === 'mountpoint') {