Files
beszel-ipv6/agent/zfs/zfs_nonlinux.go
2026-09-16 13:28:47 -04:00

10 lines
194 B
Go

//go:build !linux
package zfs
// The /dev/zfs probe is Linux-specific. Other platforms detect availability
// through the ZFS utilities themselves.
func checkZfsDevice() error {
return nil
}