[pbs-devel] [PATCH proxmox-backup] completion: fix ACL path completion
Fabian Grünbichler
f.gruenbichler at proxmox.com
Mon Oct 19 09:54:29 CEST 2020
Signed-off-by: Fabian Grünbichler <f.gruenbichler at proxmox.com>
---
src/config/datastore.rs | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/config/datastore.rs b/src/config/datastore.rs
index 1f5b4f84..aaf977a7 100644
--- a/src/config/datastore.rs
+++ b/src/config/datastore.rs
@@ -157,12 +157,12 @@ pub fn complete_acl_path(_arg: &str, _param: &HashMap<String, String>) -> Vec<St
let mut list = Vec::new();
list.push(String::from("/"));
- list.push(String::from("/storage"));
- list.push(String::from("/storage/"));
+ list.push(String::from("/datastore"));
+ list.push(String::from("/datastore/"));
if let Ok((data, _digest)) = config() {
for id in data.sections.keys() {
- list.push(format!("/storage/{}", id));
+ list.push(format!("/datastore/{}", id));
}
}
--
2.20.1
More information about the pbs-devel
mailing list