Files
Brent Baude e5a4f00b7d Podman 5 machine config file - Step 1
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>
2023-12-11 16:26:15 -06:00

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"