diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-06-28 18:06:30 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-28 18:06:30 +0200 |
commit | 9d49bda8f1346e0c92adc28e7066f8d8f9e6493b (patch) | |
tree | 14867deb224a980a9b3a80be905d0695fa4bc28b /cmd/podman | |
parent | 5e42bf071760bc09beea1d75345d7c95407a915a (diff) | |
parent | 93d3eb30a88aa1cd2f1159cf7917e10743fafa03 (diff) | |
download | podman-9d49bda8f1346e0c92adc28e7066f8d8f9e6493b.tar.gz podman-9d49bda8f1346e0c92adc28e7066f8d8f9e6493b.tar.bz2 podman-9d49bda8f1346e0c92adc28e7066f8d8f9e6493b.zip |
Merge pull request #3451 from ashley-cui/unmount
Remove umount command from remote client.
Diffstat (limited to 'cmd/podman')
-rw-r--r-- | cmd/podman/commands.go | 1 | ||||
-rw-r--r-- | cmd/podman/main.go | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/cmd/podman/commands.go b/cmd/podman/commands.go index 18b0b7857..9229191ff 100644 --- a/cmd/podman/commands.go +++ b/cmd/podman/commands.go @@ -19,6 +19,7 @@ func getMainCommands() []*cobra.Command { _refreshCommand, _searchCommand, _statsCommand, + _umountCommand, _unshareCommand, } diff --git a/cmd/podman/main.go b/cmd/podman/main.go index 435efd559..248d63753 100644 --- a/cmd/podman/main.go +++ b/cmd/podman/main.go @@ -59,7 +59,6 @@ var mainCommands = []*cobra.Command{ _stopCommand, _tagCommand, _topCommand, - _umountCommand, _unpauseCommand, _versionCommand, _waitCommand, |