diff options
| author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-03-25 10:50:01 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-03-25 10:50:01 -0700 |
| commit | db356748738762c31a036c179d23488d7978dabf (patch) | |
| tree | a01d257cba3349b47ff743b11eaa7f496bac991b /cmd/podman/machine/machine.go | |
| parent | 24581d8760691af1657c4f890d42ebd76f5e85c4 (diff) | |
| parent | 4ab8a6f67eb9de0de40d478cb0cbec05b1b725c0 (diff) | |
| download | podman-db356748738762c31a036c179d23488d7978dabf.tar.gz podman-db356748738762c31a036c179d23488d7978dabf.tar.bz2 podman-db356748738762c31a036c179d23488d7978dabf.zip | |
Merge pull request #9781 from baude/addqemu
introduce podman machine
Diffstat (limited to 'cmd/podman/machine/machine.go')
| -rw-r--r-- | cmd/podman/machine/machine.go | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/cmd/podman/machine/machine.go b/cmd/podman/machine/machine.go new file mode 100644 index 000000000..ed284ee10 --- /dev/null +++ b/cmd/podman/machine/machine.go @@ -0,0 +1,32 @@ +// +build amd64,linux amd64,darwin arm64,darwin + +package machine + +import ( + "github.com/containers/podman/v3/cmd/podman/registry" + "github.com/containers/podman/v3/cmd/podman/validate" + "github.com/containers/podman/v3/pkg/domain/entities" + "github.com/spf13/cobra" +) + +var ( + noOp = func(cmd *cobra.Command, args []string) error { + return nil + } + // Command: podman _machine_ + machineCmd = &cobra.Command{ + Use: "machine", + Short: "Manage a virtual machine", + Long: "Manage a virtual machine. Virtual machines are used to run Podman.", + PersistentPreRunE: noOp, + PersistentPostRunE: noOp, + RunE: validate.SubCommandExists, + } +) + +func init() { + registry.Commands = append(registry.Commands, registry.CliCommand{ + Mode: []entities.EngineMode{entities.ABIMode, entities.TunnelMode}, + Command: machineCmd, + }) +} |
