github.com/jxskiss/gopkg/v2@v2.14.9-0.20240514120614-899f3e7952b4/internal/machineid/id_freebsd.go (about)

     1  //go:build freebsd
     2  
     3  package machineid
     4  
     5  import "syscall"
     6  
     7  func readPlatformMachineID() (string, error) {
     8  	return syscall.Sysctl("kern.hostuuid")
     9  }