mirror of
https://github.com/containers/podman.git
synced 2025-05-20 16:47:39 +08:00

The following PR is the very first step in what will a series of steps to apply a "common" machine configuration file to all providers. Function names, method names, struct names, and field names are all up for debate. The purpose of this PR is to offer a glimpse at the direction we intend to take. This PR also contains temporary structs (i.e. aThing) that are not exported. These are merely placeholders. The configuration work in this PR is also unused of yet. But the code is compiled. Once merged, we can begin the next step of development. [NO NEW TESTS NEEDED] Signed-off-by: Brent Baude <bbaude@redhat.com>
16 lines
360 B
Go
16 lines
360 B
Go
package define
|
|
|
|
type Status = string
|
|
|
|
// Running indicates the qemu vm is running.
|
|
const Running Status = "running"
|
|
|
|
// Stopped indicates the vm has stopped.
|
|
const Stopped Status = "stopped"
|
|
|
|
// Starting indicated the vm is in the process of starting
|
|
const Starting Status = "starting"
|
|
|
|
// Unknown means the state is not known
|
|
const Unknown Status = "unknown"
|