summaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2019-04-29 14:12:28 -0700
committerGitHub <noreply@github.com>2019-04-29 14:12:28 -0700
commita2fd2d2c32c86b6fdee038312fe246bd1c825c7e (patch)
tree0183f28a70cd563ae71fd2ec116524ea1ac17606 /cmd
parentb5af10ce5a51f8ac2c7f7b101006412287d17b68 (diff)
parent151c8487a354281c4f0e42d98bc560799dd1d074 (diff)
downloadpodman-a2fd2d2c32c86b6fdee038312fe246bd1c825c7e.tar.gz
podman-a2fd2d2c32c86b6fdee038312fe246bd1c825c7e.tar.bz2
podman-a2fd2d2c32c86b6fdee038312fe246bd1c825c7e.zip
Merge pull request #3032 from baude/remotestop
podman-remote stop
Diffstat (limited to 'cmd')
-rw-r--r--cmd/podman/commands.go1
-rw-r--r--cmd/podman/container.go1
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,