Files
podman/pkg/machine/ignition/ignition_freebsd.go
Jake Correnti c728eeb39e Create pkg/machine/ignition package
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>
2024-01-04 08:51:35 -05:00

8 lines
98 B
Go

//go:build freebsd
package ignition
func getLocalTimeZone() (string, error) {
return "", nil
}