Implements bp migrate-nova-volumes-to-cinder

Helper cmds to transition from nova to cinder

  Implements an import section in cinder-manage to transfer
  applicable tables from local or remote Nova database into a
  fresh Cinder database.

  Also implements optional method to copy persistent target files.

Change-Id: I2e655e26c55f1986f3b1554726cead9e73ee9bd6
This commit is contained in:
John Griffith
2012-08-08 13:33:08 -06:00
parent 5f31f6e697
commit 11545df5cb
2 changed files with 129 additions and 9 deletions

View File

@@ -239,6 +239,10 @@ class InvalidRequest(Invalid):
message = _("The request is invalid.")
class InvalidResults(Invalid):
message = _("The results are invalid.")
class InvalidSignature(Invalid):
message = _("Invalid signature %(signature)s for user %(user)s.")