Ignore warning if nm ignore file is empty

master
xSmurf 9 years ago
parent 2313bd6a34
commit 77136cb5ea

@ -27,8 +27,10 @@ func BridgeInit(bridgeMAC string, nmIgnoreFile string, log *logging.Logger) (*Ho
BridgeMAC: bridgeMAC,
}
if _, err := os.Stat(nmIgnoreFile); os.IsNotExist(err) {
log.Warning("Warning! Network Manager may not properly configured to ignore the bridge interface! This may result in management conflicts!")
if nmIgnoreFile != "" {
if _, err := os.Stat(nmIgnoreFile); os.IsNotExist(err) {
log.Warning("Warning! Network Manager may not properly configured to ignore the bridge interface! This may result in management conflicts!")
}
}
br, err := tenus.BridgeFromName(ozDefaultInterfaceBridge)

Loading…
Cancel
Save