From e06d0fe5e54bb223701385b08703bf229dc4aa7e Mon Sep 17 00:00:00 2001 From: baude Date: Wed, 21 Aug 2019 14:51:52 -0500 Subject: podman-remote: cp crashes prune unwanted messages when running a container remotely. also, cp is not remote-enabled yet and as such should not be available on the remote client. Fixes: #3861 Signed-off-by: baude --- cmd/podman/commands.go | 2 ++ 1 file changed, 2 insertions(+) (limited to 'cmd/podman/commands.go') diff --git a/cmd/podman/commands.go b/cmd/podman/commands.go index e23918a5b..77c76d1b7 100644 --- a/cmd/podman/commands.go +++ b/cmd/podman/commands.go @@ -11,6 +11,7 @@ const remoteclient = false // Commands that the local client implements func getMainCommands() []*cobra.Command { rootCommands := []*cobra.Command{ + _cpCommand, _playCommand, _loginCommand, _logoutCommand, @@ -39,6 +40,7 @@ func getImageSubCommands() []*cobra.Command { func getContainerSubCommands() []*cobra.Command { return []*cobra.Command{ + _cpCommand, _cleanupCommand, _mountCommand, _refreshCommand, -- cgit v1.2.3-54-g00ecf