We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 73ed488 + 83afcfe commit e9b343cCopy full SHA for e9b343c
1 file changed
lib/nova_plugins/functions-libvirt
@@ -29,12 +29,16 @@ function install_libvirt {
29
install_package python-libguestfs
30
fi
31
32
- # Restart dbus/firewalld after install of libvirt to avoid a
33
- # problem with polkit, which libvirtd brings in. See
+ # Restart firewalld after install of libvirt to avoid a problem
+ # with polkit, which libvirtd brings in. See
34
# https://bugzilla.redhat.com/show_bug.cgi?id=1099031
35
+
36
+ # Note there is a difference between F20 rackspace cloud images
37
+ # and HP images used in the gate; rackspace has firewalld but hp
38
+ # cloud doesn't. RHEL6 doesn't have firewalld either. So we
39
+ # don't care if it fails.
40
if is_fedora; then
- sudo service dbus restart
- sudo service firewalld restart
41
+ sudo service firewalld restart || true
42
43
}
44
0 commit comments