summaryrefslogtreecommitdiff
path: root/nova/volume/driver.py
diff options
context:
space:
mode:
authorrenukaapte <renuka.apte@citrix.com>2011-10-11 16:22:37 -0700
committerRenuka Apte <renuka.apte@citrix.com>2011-11-01 16:16:09 -0700
commit931a0e206801baef9a9890b288eafd78a1da98b9 (patch)
tree5ce637a4a52a73e90a8dc1571a0c179eb6a7f3ab /nova/volume/driver.py
parentd3e0cfcc7f7bc24b4bd551f5b5c0c952f2fd2f3f (diff)
downloadnova-931a0e206801baef9a9890b288eafd78a1da98b9.tar.gz
Xen Storage Manager Volume Driver
For details, please read the full specification here: http://wiki.openstack.org/xenapi-sm-volume-driver Change-Id: I17028a491d8ddee465bfa920907fe3bcaa911869
Diffstat (limited to 'nova/volume/driver.py')
-rw-r--r--nova/volume/driver.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/nova/volume/driver.py b/nova/volume/driver.py
index ea7386d861..8936916693 100644
--- a/nova/volume/driver.py
+++ b/nova/volume/driver.py
@@ -213,6 +213,10 @@ class VolumeDriver(object):
True, run the update first."""
return None
+ def do_setup(self, context):
+ """Any initialization the volume driver does while starting"""
+ pass
+
class ISCSIDriver(VolumeDriver):
"""Executes commands relating to ISCSI volumes.