summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--vmdb/plugins/debootstrap_plugin.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/vmdb/plugins/debootstrap_plugin.py b/vmdb/plugins/debootstrap_plugin.py
index c591351..9f622a1 100644
--- a/vmdb/plugins/debootstrap_plugin.py
+++ b/vmdb/plugins/debootstrap_plugin.py
@@ -42,7 +42,7 @@ class DebootstrapStepRunner(vmdb.StepRunnerInterface):
target = state.tags.get_builder_mount_point(tag)
mirror = values["mirror"]
keyring = values["keyring"] or None
- arch = values["keyring"] or subprocess.check_output(['dpkg', '--print-architecture'])
+ arch = values["arch"] or subprocess.check_output(['dpkg', '--print-architecture'])
variant = values["variant"]
components = values["components"]