summaryrefslogtreecommitdiff
path: root/cmd/podman/common
diff options
context:
space:
mode:
authorPaul Holzinger <paul.holzinger@web.de>2021-03-31 14:01:18 +0200
committerPaul Holzinger <paul.holzinger@web.de>2021-03-31 14:29:07 +0200
commit009322c57a049a98b6b8a7a1ad42d9e0f252472c (patch)
tree8d53e989c689aa81265d71451a395e33fb6f653f /cmd/podman/common
parentdbb7009e5586d41a5b64806ae5fb664dc77c7bdb (diff)
downloadpodman-009322c57a049a98b6b8a7a1ad42d9e0f252472c.tar.gz
podman-009322c57a049a98b6b8a7a1ad42d9e0f252472c.tar.bz2
podman-009322c57a049a98b6b8a7a1ad42d9e0f252472c.zip
podman machine shell completion
Add shell completion for machine names. [NO TESTS NEEDED] I would like to add one to the shell completion test however using podman machine init is to expensive. Signed-off-by: Paul Holzinger <paul.holzinger@web.de>
Diffstat (limited to 'cmd/podman/common')
-rw-r--r--cmd/podman/common/completion.go8
1 files changed, 0 insertions, 8 deletions
diff --git a/cmd/podman/common/completion.go b/cmd/podman/common/completion.go
index 6bed5e0c6..bc106263c 100644
--- a/cmd/podman/common/completion.go
+++ b/cmd/podman/common/completion.go
@@ -1092,11 +1092,3 @@ func AutocompleteVolumeFilters(cmd *cobra.Command, args []string, toComplete str
}
return completeKeyValues(toComplete, kv)
}
-
-// AutocompleteMachineSSH - Autocomplete machine ssh command.
-func AutocompleteMachineSSH(cmd *cobra.Command, args []string, toComplete string) ([]string, cobra.ShellCompDirective) {
- if len(args) == 0 {
- return nil, cobra.ShellCompDirectiveNoFileComp
- }
- return nil, cobra.ShellCompDirectiveDefault
-}