diff options
| author | Soren Hansen <soren@linux2go.dk> | 2011-01-25 23:38:39 +0100 |
|---|---|---|
| committer | Soren Hansen <soren@linux2go.dk> | 2011-01-25 23:38:39 +0100 |
| commit | 5f3e50951df022e5a3ebfe35ce1de78a4ac090a1 (patch) | |
| tree | aab05dc74710ee74a2fe26345cbf310c831d20c2 /nova | |
| parent | e44b28a0daa771c67fa8672f89f7d52ee1bfec22 (diff) | |
| parent | 1b259ba6ac7401d99eff2ded3100c73f3048728e (diff) | |
Merge with lp:~tpatil/nova/bug707554
Diffstat (limited to 'nova')
| -rw-r--r-- | nova/virt/libvirt_conn.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/virt/libvirt_conn.py b/nova/virt/libvirt_conn.py index ac7fd8ef0..9d18419a2 100644 --- a/nova/virt/libvirt_conn.py +++ b/nova/virt/libvirt_conn.py @@ -1270,7 +1270,7 @@ class IptablesFirewallDriver(FirewallDriver): # Allow DHCP responses dhcp_server = self._dhcp_server_for_instance(instance) our_rules += ['-A %s -s %s -p udp --sport 67 --dport 68 ' - '-j ACCEPT' % (chain_name, dhcp_server)] + '-j ACCEPT ' % (chain_name, dhcp_server)] elif(ip_version == 6): # Allow RA responses ra_server = self._ra_server_for_instance(instance) |
