podman/pkg/util/utils_unsupported.go

11 lines
267 B
Go

//go:build darwin || windows || freebsd
package util
import "errors"
// FindDeviceNodes is not implemented anywhere except Linux.
func FindDeviceNodes(onlyBlockDevices bool) (map[string]string, error) {
return nil, errors.New("not supported on non-Linux OSes")
}