bug 924267: Explicitly set firewall_driver to nova.virt.libvirt.firewall.IptablesFirewallDriver

Because of https://bugs.launchpad.net/nova/+bug/924266, the default firewall_driver should
not be the libvirt's one. So set the driver explicitly.

Change-Id: I1e6a0d824e857bb082eef2a684445241d4c31aae
diff --git a/stack.sh b/stack.sh
index f0830a1..17972c9 100755
--- a/stack.sh
+++ b/stack.sh
@@ -1235,6 +1235,8 @@
     add_nova_flag "--firewall_driver=$XEN_FIREWALL_DRIVER"
 else
     add_nova_flag "--connection_type=libvirt"
+    LIBVIRT_FIREWALL_DRIVER=${LIBVIRT_FIREWALL_DRIVER:-"nova.virt.libvirt.firewall.IptablesFirewallDriver"}
+    add_nova_flag "--firewall_driver=$LIBVIRT_FIREWALL_DRIVER"
     add_nova_flag "--flat_network_bridge=$FLAT_NETWORK_BRIDGE"
     if [ -n "$FLAT_INTERFACE" ]; then
         add_nova_flag "--flat_interface=$FLAT_INTERFACE"