diff options
author | baude <bbaude@redhat.com> | 2019-04-28 08:25:23 -0500 |
---|---|---|
committer | baude <bbaude@redhat.com> | 2019-04-29 12:18:11 -0500 |
commit | 151c8487a354281c4f0e42d98bc560799dd1d074 (patch) | |
tree | 0183f28a70cd563ae71fd2ec116524ea1ac17606 | |
parent | b5af10ce5a51f8ac2c7f7b101006412287d17b68 (diff) | |
download | podman-151c8487a354281c4f0e42d98bc560799dd1d074.tar.gz podman-151c8487a354281c4f0e42d98bc560799dd1d074.tar.bz2 podman-151c8487a354281c4f0e42d98bc560799dd1d074.zip |
podman-remote stop
add stop to the container subcommands for the remote client. the stop
function is already done. this is a graphical change only.
Signed-off-by: baude <bbaude@redhat.com>
-rw-r--r-- | cmd/podman/commands.go | 1 | ||||
-rw-r--r-- | cmd/podman/container.go | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/cmd/podman/commands.go b/cmd/podman/commands.go index 36c28696f..9cbb9eec7 100644 --- a/cmd/podman/commands.go +++ b/cmd/podman/commands.go @@ -51,7 +51,6 @@ func getContainerSubCommands() []*cobra.Command { _restoreCommand, _runlabelCommand, _statsCommand, - _stopCommand, _umountCommand, } } diff --git a/cmd/podman/container.go b/cmd/podman/container.go index 52152d50e..c147ee0fa 100644 --- a/cmd/podman/container.go +++ b/cmd/podman/container.go @@ -64,6 +64,7 @@ var ( _runCommand, _rmCommand, _startCommand, + _stopCommand, _topCommand, _unpauseCommand, _waitCommand, |