Skip to content

Commit e9bf751

Browse files
author
Aaron Brady
committed
Skip VXLANs when rewriting the bridge name for migrations
1 parent a0aa060 commit e9bf751

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

agent/bindir/libvirtqemuhook.in

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ def isOldStyleBridge(brName):
2626
else:
2727
return False
2828
def isNewStyleBridge(brName):
29+
if brName.startswith('brvx-'):
30+
return False
2931
if re.match(r"br(\w+)-(\d+)", brName) == None:
3032
return False
3133
else:

0 commit comments

Comments
 (0)