summaryrefslogtreecommitdiff
path: root/cmd/podman/common/completion.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2021-03-31 18:20:53 +0200
committerGitHub <noreply@github.com>2021-03-31 18:20:53 +0200
commit2e72b13823f1be199e483f34899723819d1dc474 (patch)
treecb22d4768ea634f43c22f48d20a9b1f3f9d11317 /cmd/podman/common/completion.go
parent78b4dcf4768e86ad02cc7b84d95ad66282678742 (diff)
parent009322c57a049a98b6b8a7a1ad42d9e0f252472c (diff)
downloadpodman-2e72b13823f1be199e483f34899723819d1dc474.tar.gz
podman-2e72b13823f1be199e483f34899723819d1dc474.tar.bz2
podman-2e72b13823f1be199e483f34899723819d1dc474.zip
Merge pull request #9904 from Luap99/podman-machine-autocomplete
podman machine shell completion
Diffstat (limited to 'cmd/podman/common/completion.go')
-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
-}