Files
netbird/util/logrotate_nonlinux.go
Theodor S. Midtlien b26dac7a46 Fix comment
2026-05-19 21:53:43 +02:00

11 lines
268 B
Go

//go:build !linux
package util
// FindLogrotateConflicts scans the standard logrotate locations for
// indications of conflict with netbird. It will always return false for
// non-linux devices.
func FindFirstLogrotateConflict() (bool, string) {
return false, ""
}