CLOUDSTACK-10081: CloudUtils getDevInfo function will now return "bridge" instead of "dev" when the name of a ovs bridge is passed.

This commit is contained in:
Sigert Goeminne 2017-09-19 16:45:43 +02:00 committed by Frank Maximus
parent 41fdb88970
commit 9c7cd8c248
1 changed files with 1 additions and 1 deletions

View File

@ -154,7 +154,7 @@ class networkConfig:
if networkConfig.isBridgePort(dev):
type = "brport"
elif networkConfig.isBridge(dev):
elif networkConfig.isBridge(dev) or networkConfig.isOvsBridge(dev):
type = "bridge"
else:
type = "dev"