summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2020-04-05 14:14:01 +0300
committerLars Wirzenius <liw@liw.fi>2020-04-05 14:14:01 +0300
commit467657da98cda2a85cfe4c9aea50a9bc481a88c7 (patch)
tree4b1a59f71361e22c906c0b883d11288ae674ad38
parent1319a03c3ecfaf812da24813a2d71cb406033836 (diff)
downloadvmdb2-467657da98cda2a85cfe4c9aea50a9bc481a88c7.tar.gz
Fix: name of field in key spec, for qemu-debootstrap
-rw-r--r--vmdb/plugins/qemudebootstrap_plugin.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/vmdb/plugins/qemudebootstrap_plugin.py b/vmdb/plugins/qemudebootstrap_plugin.py
index a195d29..fa97523 100644
--- a/vmdb/plugins/qemudebootstrap_plugin.py
+++ b/vmdb/plugins/qemudebootstrap_plugin.py
@@ -32,7 +32,7 @@ class QemuDebootstrapStepRunner(vmdb.StepRunnerInterface):
def get_key_spec(self):
return {
- 'debootstrap': str,
+ 'qemu-debootstrap': str,
'target': str,
'mirror': str,
'arch': str,
@@ -49,7 +49,7 @@ class QemuDebootstrapStepRunner(vmdb.StepRunnerInterface):
keyring = values['keyring'] or None
variant = values['variant']
arch = values['arch']
- components = values['compontents']
+ components = values['components']
if not (suite and tag and target and mirror and arch):
raise Exception('missing arg for qemu-debootstrap step')
if keyring: