Skip to content

Commit 177ec5f

Browse files
author
Paul Whalen
committed
fix: remove trusted zone from libvirt network bridge
The zone='trusted' attribute on the integration network bridge requires firewalld's D-Bus interface to be ready when the network starts. Since firewalld 2.4.1 removed Type=dbus from its systemd unit, this causes a race condition. NAT networking between host and VM works without the zone override, so remove it. Assisted-by: Claude Opus 4.6 <noreply@anthropic.com> Signed-off-by: Paul Whalen <pwhalen@fedoraproject.org>
1 parent 38b9111 commit 177ec5f

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

tests/greenboot-bootc-anaconda-iso.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ sudo tee /tmp/integration.xml > /dev/null << EOF
149149
<port start='1024' end='65535'/>
150150
</nat>
151151
</forward>
152-
<bridge name='integration' zone='trusted' stp='on' delay='0'/>
152+
<bridge name='integration' stp='on' delay='0'/>
153153
<mac address='52:54:00:36:46:ef'/>
154154
<ip address='192.168.100.1' netmask='255.255.255.0'>
155155
<dhcp>

tests/greenboot-bootc-qcow2.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ sudo tee /tmp/integration.xml > /dev/null << EOF
149149
<port start='1024' end='65535'/>
150150
</nat>
151151
</forward>
152-
<bridge name='integration' zone='trusted' stp='on' delay='0'/>
152+
<bridge name='integration' stp='on' delay='0'/>
153153
<mac address='52:54:00:36:46:ef'/>
154154
<ip address='192.168.100.1' netmask='255.255.255.0'>
155155
<dhcp>

tests/greenboot-ostree.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ sudo tee /tmp/integration.xml > /dev/null << EOF
171171
<port start='1024' end='65535'/>
172172
</nat>
173173
</forward>
174-
<bridge name='integration' zone='trusted' stp='on' delay='0'/>
174+
<bridge name='integration' stp='on' delay='0'/>
175175
<mac address='52:54:00:36:46:ef'/>
176176
<ip address='192.168.100.1' netmask='255.255.255.0'>
177177
<dhcp>

0 commit comments

Comments
 (0)