mirror of
https://github.com/netbirdio/netbird.git
synced 2026-05-31 21:19:55 +00:00
11 lines
268 B
Go
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, ""
|
|
}
|