mirror of
https://github.com/netbirdio/netbird.git
synced 2025-07-20 16:03:23 +02:00
15 lines
311 B
Go
15 lines
311 B
Go
//go:build !linux || android
|
|
|
|
package debug
|
|
|
|
// collectFirewallRules returns nothing on non-linux systems
|
|
func (g *BundleGenerator) addFirewallRules() error {
|
|
return nil
|
|
}
|
|
|
|
func (g *BundleGenerator) trySystemdLogFallback() error {
|
|
// Systemd is only available on Linux
|
|
// TODO: Add BSD support
|
|
return nil
|
|
}
|