summaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
authorAshley Cui <ashleycui16@gmail.com>2019-06-27 16:44:00 -0400
committerAshley Cui <ashleycui16@gmail.com>2019-06-27 16:52:56 -0400
commit93d3eb30a88aa1cd2f1159cf7917e10743fafa03 (patch)
tree12a8d4b828c4e7fcd13189f801cba279b5d7f9e3 /cmd
parent0906b32087c3d7db6844873a7d46241430a1b065 (diff)
downloadpodman-93d3eb30a88aa1cd2f1159cf7917e10743fafa03.tar.gz
podman-93d3eb30a88aa1cd2f1159cf7917e10743fafa03.tar.bz2
podman-93d3eb30a88aa1cd2f1159cf7917e10743fafa03.zip
Remove umount command from remote client.
Since there is no mount command, it does not make sense to have umount. Signed-off-by: Ashley Cui <ashleycui16@gmail.com>
Diffstat (limited to 'cmd')
-rw-r--r--cmd/podman/commands.go1
-rw-r--r--cmd/podman/main.go1
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 04b1e80cf..7c15f7c38 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,