github.com/hanks177/podman/v4@v4.1.3-0.20220613032544-16d90015bc83/pkg/util/utils_unsupported.go (about)

     1  //go:build darwin || windows
     2  // +build darwin windows
     3  
     4  package util
     5  
     6  import (
     7  	"github.com/pkg/errors"
     8  )
     9  
    10  // FindDeviceNodes is not implemented anywhere except Linux.
    11  func FindDeviceNodes() (map[string]string, error) {
    12  	return nil, errors.Errorf("not supported on non-Linux OSes")
    13  }