summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTodd Willey <todd@ansolabs.com>2011-05-31 14:10:29 -0400
committerTodd Willey <todd@ansolabs.com>2011-05-31 14:10:29 -0400
commitadd164c45db31baf8f12c3e5dede140c51a2e498 (patch)
tree0a89aeca5367816c36d4dca8dc1471f052d9354e
parent1fd3f5a6edf911dc84e11130bc2c590567d780c3 (diff)
Add refresh_provider_fw_rules to virt/driver.py#ComputeDriver so virtualization
drivers other than libvirt will raise NotImplemented.
-rw-r--r--nova/virt/driver.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/nova/virt/driver.py b/nova/virt/driver.py
index eb9626d08..23581ab49 100644
--- a/nova/virt/driver.py
+++ b/nova/virt/driver.py
@@ -191,6 +191,10 @@ class ComputeDriver(object):
def refresh_security_group_members(self, security_group_id):
raise NotImplementedError()
+ def refresh_provider_fw_rules(self, security_group_id):
+ """See: nova/virt/fake.py for docs."""
+ raise NotImplementedError()
+
def reset_network(self, instance):
"""reset networking for specified instance"""
raise NotImplementedError()