summaryrefslogtreecommitdiff
path: root/cmd/podman/main.go
diff options
context:
space:
mode:
authorbaude <bbaude@redhat.com>2019-02-10 15:25:13 -0600
committerbaude <bbaude@redhat.com>2019-02-11 12:53:21 -0600
commit13d2354bc6b43571061d6eccab560fe1f226339e (patch)
tree07d6b759d83e91bd9c3097ee46428a230728c47a /cmd/podman/main.go
parentc86e8f180c8b0cdbd1bafe327c4671370096c45f (diff)
downloadpodman-13d2354bc6b43571061d6eccab560fe1f226339e.tar.gz
podman-13d2354bc6b43571061d6eccab560fe1f226339e.tar.bz2
podman-13d2354bc6b43571061d6eccab560fe1f226339e.zip
Separate remote and local commands
In the previous CLI, we had an accurate depiction of commands available for the remote client and those available for the local client. Signed-off-by: baude <bbaude@redhat.com>
Diffstat (limited to 'cmd/podman/main.go')
-rw-r--r--cmd/podman/main.go20
1 files changed, 20 insertions, 0 deletions
diff --git a/cmd/podman/main.go b/cmd/podman/main.go
index 32ecaede7..49acde1f9 100644
--- a/cmd/podman/main.go
+++ b/cmd/podman/main.go
@@ -27,6 +27,24 @@ var (
exitCode = 125
)
+// Commands that the remote and local client have
+// implemented.
+var mainCommands = []*cobra.Command{
+ _exportCommand,
+ _historyCommand,
+ _imagesCommand,
+ _importCommand,
+ _infoCommand,
+ _inspectCommand,
+ _killCommand,
+ _pullCommand,
+ _rmiCommand,
+ _tagCommand,
+ _versionCommand,
+ imageCommand.Command,
+ systemCommand.Command,
+}
+
var cmdsNotRequiringRootless = map[*cobra.Command]bool{
_versionCommand: true,
_createCommand: true,
@@ -92,6 +110,8 @@ func init() {
rootCmd.PersistentFlags().BoolVar(&MainGlobalOpts.Syslog, "syslog", false, "Output logging information to syslog as well as the console")
rootCmd.PersistentFlags().StringVar(&MainGlobalOpts.TmpDir, "tmpdir", "", "Path to the tmp directory")
+ rootCmd.AddCommand(mainCommands...)
+ rootCmd.AddCommand(getMainCommands()...)
}
func initConfig() {