From 38120ea5721b5f86bc66b6063634c7ca2077b904 Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Mon, 12 Jul 2021 13:39:17 +0300 Subject: fix: get config key "arch" for arch instead of "keyring" Sponsored-by: author --- vmdb/plugins/debootstrap_plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"] -- cgit v1.2.1