summaryrefslogtreecommitdiffstats
path: root/nova/virt
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2012-08-02 01:34:12 +0000
committerGerrit Code Review <review@openstack.org>2012-08-02 01:34:12 +0000
commitfe21967c6afce187e250efc2976ecd0b06e724c8 (patch)
treecd3b600c981a4af5f7170120367692f903a15e1b /nova/virt
parent997250d43ee953ae25892213110b9a12860f8377 (diff)
parent9893c3eb5794e689736e881ec0551bdfeda48d8f (diff)
Merge "Remove agent_update from the compute manager."
Diffstat (limited to 'nova/virt')
-rw-r--r--nova/virt/driver.py13
-rw-r--r--nova/virt/fake.py3
2 files changed, 0 insertions, 16 deletions
diff --git a/nova/virt/driver.py b/nova/virt/driver.py
index 4e821eab2..262c4c3ef 100644
--- a/nova/virt/driver.py
+++ b/nova/virt/driver.py
@@ -539,19 +539,6 @@ class ComputeDriver(object):
"""
pass
- def agent_update(self, instance, url, md5hash):
- """
- Update agent on the specified instance.
-
- The first parameter is an instance of nova.compute.service.Instance,
- and so the instance is being specified as instance.name. The second
- parameter is the URL of the agent to be fetched and updated on the
- instance; the third is the md5 hash of the file for verification
- purposes.
- """
- # TODO(Vek): Need to pass context in for access to auth_token
- raise NotImplementedError()
-
def inject_network_info(self, instance, nw_info):
"""inject network info for specified instance"""
# TODO(Vek): Need to pass context in for access to auth_token
diff --git a/nova/virt/fake.py b/nova/virt/fake.py
index cf143480b..0e5443074 100644
--- a/nova/virt/fake.py
+++ b/nova/virt/fake.py
@@ -114,9 +114,6 @@ class FakeDriver(driver.ComputeDriver):
def inject_file(self, instance, b64_path, b64_contents):
pass
- def agent_update(self, instance, url, md5hash):
- pass
-
def resume_state_on_host_boot(self, context, instance, network_info):
pass