Skip to content

Commit

Permalink
openvswitch.py fix fake bridge parent
Browse files Browse the repository at this point in the history
This fixes issue #313 where the ovs_bridge parameter
for fake bridges was not applied.
  • Loading branch information
lachbaer committed Oct 15, 2024
1 parent 9d46313 commit 567585a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ifupdown2/addons/openvswitch.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ def _addbridge (self, ifaceobj):

cmd = "--may-exist add-br %s"%(iface)
if ovsparent is not None and ovsoptions:
cmd = cmd + " %s" %(ovsoptions)
cmd = cmd + " %s %s" %(ovsparent, ovsoptions)

cmd_list.append(cmd)

Expand Down

0 comments on commit 567585a

Please sign in to comment.