summaryrefslogtreecommitdiff
path: root/cmd/podman/main.go
blob: 6365381312158c809a3a159ba66af58ab36ba308 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
package main

import (
	"fmt"
	"os"

	_ "github.com/containers/libpod/cmd/podman/containers"
	_ "github.com/containers/libpod/cmd/podman/generate"
	_ "github.com/containers/libpod/cmd/podman/healthcheck"
	_ "github.com/containers/libpod/cmd/podman/images"
	_ "github.com/containers/libpod/cmd/podman/manifest"
	_ "github.com/containers/libpod/cmd/podman/networks"
	_ "github.com/containers/libpod/cmd/podman/play"
	_ "github.com/containers/libpod/cmd/podman/pods"
	"github.com/containers/libpod/cmd/podman/registry"
	_ "github.com/containers/libpod/cmd/podman/system"
	_ "github.com/containers/libpod/cmd/podman/volumes"
	"github.com/containers/libpod/pkg/rootless"
	"github.com/containers/libpod/pkg/terminal"
	"github.com/containers/storage/pkg/reexec"
	"github.com/sirupsen/logrus"
	"github.com/spf13/cobra"
)

func main() {
	if reexec.Init() {
		// We were invoked with a different argv[0] indicating that we
		// had a specific job to do as a subprocess, and it's done.
		return
	}

	// Hard code TMPDIR functions to use /var/tmp, if user did not override
	if _, ok := os.LookupEnv("TMPDIR"); !ok {
		os.Setenv("TMPDIR", "/var/tmp")
	}

	cfg := registry.PodmanConfig()
	for _, c := range registry.Commands {
		for _, m := range c.Mode {
			if cfg.EngineMode == m {
				// Command cannot be run rootless
				_, found := c.Command.Annotations[registry.ParentNSRequired]
				if rootless.IsRootless() && found {
					c.Command.RunE = func(cmd *cobra.Command, args []string) error {
						return fmt.Errorf("cannot run command %q in rootless mode", cmd.CommandPath())
					}
				}

				parent := rootCmd
				if c.Parent != nil {
					parent = c.Parent
				}
				parent.AddCommand(c.Command)

				// - templates need to be set here, as PersistentPreRunE() is
				// not called when --help is used.
				// - rootCmd uses cobra default template not ours
				c.Command.SetHelpTemplate(helpTemplate)
				c.Command.SetUsageTemplate(usageTemplate)
			}
		}
	}
	if err := terminal.SetConsole(); err != nil {
		logrus.Error(err)
		os.Exit(1)
	}

	Execute()
	os.Exit(0)
}