* [pbs-devel] [PATCH proxmox-backup] completion: fix ACL path completion
@ 2020-10-19 7:54 Fabian Grünbichler
2020-10-19 13:06 ` [pbs-devel] applied: " Thomas Lamprecht
0 siblings, 1 reply; 2+ messages in thread
From: Fabian Grünbichler @ 2020-10-19 7:54 UTC (permalink / raw)
To: pbs-devel
Signed-off-by: Fabian Grünbichler <f.gruenbichler@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
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2020-10-19 13:06 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-10-19 7:54 [pbs-devel] [PATCH proxmox-backup] completion: fix ACL path completion Fabian Grünbichler
2020-10-19 13:06 ` [pbs-devel] applied: " Thomas Lamprecht
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox