src/bin/proxmox_backup_client/mount.rs: fix img name completion

This commit is contained in:
Dietmar Maurer
2020-10-06 09:17:58 +02:00
parent 45f9b32e0f
commit 2995aedf1d
2 changed files with 18 additions and 5 deletions

View File

@ -34,6 +34,7 @@ use crate::{
REPO_URL_SCHEMA,
extract_repository_from_value,
complete_pxar_archive_name,
complete_img_archive_name,
complete_group_or_snapshot,
complete_repository,
record_repository,
@ -101,7 +102,7 @@ pub fn map_cmd_def() -> CliCommand {
.arg_param(&["snapshot", "archive-name"])
.completion_cb("repository", complete_repository)
.completion_cb("snapshot", complete_group_or_snapshot)
.completion_cb("archive-name", complete_pxar_archive_name)
.completion_cb("archive-name", complete_img_archive_name)
}
pub fn unmap_cmd_def() -> CliCommand {