github.com/openshift/installer@v1.4.17/pkg/clusterapi/internal/process/flock/flock_other.go (about)

     1  //go:build !linux && !darwin && !freebsd && !openbsd && !netbsd && !dragonfly
     2  // +build !linux,!darwin,!freebsd,!openbsd,!netbsd,!dragonfly
     3  
     4  package flock
     5  
     6  // Acquire is not implemented on non-unix systems.
     7  func Acquire(path string) error {
     8  	return nil
     9  }