mirror of
https://github.com/containers/podman.git
synced 2025-10-16 18:53:19 +08:00

Moves all of the ignitionfiles out of the `machine` package and into its own called `ignition`. This required `VMType` to get moved out of the `machine` package and into the `define` package in order to prevent a circular dependency. Signed-off-by: Jake Correnti <jakecorrenti+github@proton.me>
8 lines
98 B
Go
8 lines
98 B
Go
//go:build freebsd
|
|
|
|
package ignition
|
|
|
|
func getLocalTimeZone() (string, error) {
|
|
return "", nil
|
|
}
|