summaryrefslogtreecommitdiff
path: root/cmd/podman/commands_remoteclient.go
diff options
context:
space:
mode:
authorbaude <bbaude@redhat.com>2019-01-18 09:09:18 -0600
committerbaude <bbaude@redhat.com>2019-01-19 13:12:32 -0600
commit6f6cf86d8f1b916940ffc6eb79a763140bb86eca (patch)
treeb66d5822c0e9878db951acc4fb00bf7578568bfd /cmd/podman/commands_remoteclient.go
parente3dc6609d05695e649e76d4505e4761cafebcef6 (diff)
downloadpodman-6f6cf86d8f1b916940ffc6eb79a763140bb86eca.tar.gz
podman-6f6cf86d8f1b916940ffc6eb79a763140bb86eca.tar.bz2
podman-6f6cf86d8f1b916940ffc6eb79a763140bb86eca.zip
Mask unimplemeted commands for remote client
Masking main level, image, and container commands that are not yet implemented for the remote client. As each command is completed, be sure to unmask it. Also, masking podman command line switches that are not applicable to the remote client. Signed-off-by: baude <bbaude@redhat.com>
Diffstat (limited to 'cmd/podman/commands_remoteclient.go')
-rw-r--r--cmd/podman/commands_remoteclient.go21
1 files changed, 21 insertions, 0 deletions
diff --git a/cmd/podman/commands_remoteclient.go b/cmd/podman/commands_remoteclient.go
new file mode 100644
index 000000000..6701e14a1
--- /dev/null
+++ b/cmd/podman/commands_remoteclient.go
@@ -0,0 +1,21 @@
+// +build remoteclient
+
+package main
+
+import "github.com/urfave/cli"
+
+func getAppCommands() []cli.Command {
+ return []cli.Command{}
+}
+
+func getImageSubCommands() []cli.Command {
+ return []cli.Command{}
+}
+
+func getContainerSubCommands() []cli.Command {
+ return []cli.Command{}
+}
+
+func getMainAppFlags() []cli.Flag {
+ return []cli.Flag{}
+}