diff options
author | Jenkins <jenkins@review.openstack.org> | 2013-02-21 04:44:31 +0000 |
---|---|---|
committer | Gerrit Code Review <review@openstack.org> | 2013-02-21 04:44:31 +0000 |
commit | 922f85eb7d09f54d1fa78daa8f4f6f992aa7cd5f (patch) | |
tree | 968c82660a481420569b0d31e8b94734a75975e7 | |
parent | a41d9c6c105de57b32d2f9a854da70243e348cf4 (diff) | |
parent | e43e4d68e97a046229795a61d139762d20d38907 (diff) | |
download | nova-922f85eb7d09f54d1fa78daa8f4f6f992aa7cd5f.tar.gz nova-922f85eb7d09f54d1fa78daa8f4f6f992aa7cd5f.tar.xz nova-922f85eb7d09f54d1fa78daa8f4f6f992aa7cd5f.zip |
Merge "Make add-fixed-ip update nwfilter wth in libvirt"
-rwxr-xr-x | nova/virt/libvirt/driver.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/nova/virt/libvirt/driver.py b/nova/virt/libvirt/driver.py index 57e364115..22136431c 100755 --- a/nova/virt/libvirt/driver.py +++ b/nova/virt/libvirt/driver.py @@ -3545,6 +3545,9 @@ class LibvirtDriver(driver.ComputeDriver): % locals()) return os.access(instance_path, os.W_OK) + def inject_network_info(self, instance, nw_info): + self.firewall_driver.setup_basic_filtering(instance, nw_info) + class HostState(object): """Manages information about the compute node through libvirt.""" |