Files
netbird/util/logrotate_nonlinux.go
Theodor S. Midtlien 5a3301b3c7 Fix comment
2026-06-02 11:07:27 +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, ""
}