Fix bad ref in examples
This commit is contained in:
parent
7c49967586
commit
47b0704555
|
@ -211,7 +211,7 @@ class VMBuilderScript(VMBuilder):
|
||||||
|
|
||||||
schema += libvirt_schema.devices_net_interface.format(
|
schema += libvirt_schema.devices_net_interface.format(
|
||||||
eth_macaddr=eth_macaddr,
|
eth_macaddr=eth_macaddr,
|
||||||
eth_bridge=eth_bridge,
|
eth_bridge=network["eth_bridge"],
|
||||||
)
|
)
|
||||||
|
|
||||||
network_id += 1
|
network_id += 1
|
||||||
|
|
|
@ -215,7 +215,7 @@ class VMBuilderScript(VMBuilder):
|
||||||
|
|
||||||
schema += libvirt_schema.devices_net_interface.format(
|
schema += libvirt_schema.devices_net_interface.format(
|
||||||
eth_macaddr=eth_macaddr,
|
eth_macaddr=eth_macaddr,
|
||||||
eth_bridge=eth_bridge,
|
eth_bridge=network["eth_bridge"],
|
||||||
)
|
)
|
||||||
|
|
||||||
network_id += 1
|
network_id += 1
|
||||||
|
|
Loading…
Reference in New Issue