summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHolger Mueller <hom@cm4all.com>2018-07-05 12:17:21 +0200
committerLars Wirzenius <liw@liw.fi>2018-07-08 14:28:43 +0300
commit79e217300fdba7bd9f4c78d994a743e0a247f47c (patch)
treebda67d97559f3239d95695bf08d7ce49194c91e5
parent5e42852a0f227eff428052162efcc22aca46c361 (diff)
downloadvmdb2-79e217300fdba7bd9f4c78d994a743e0a247f47c.tar.gz
Fix: add "apt-get update" also to qemudebootstrap
-rw-r--r--vmdb/plugins/qemudebootstrap_plugin.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/vmdb/plugins/qemudebootstrap_plugin.py b/vmdb/plugins/qemudebootstrap_plugin.py
index 561ca35..7d7acad 100644
--- a/vmdb/plugins/qemudebootstrap_plugin.py
+++ b/vmdb/plugins/qemudebootstrap_plugin.py
@@ -52,3 +52,4 @@ class QemuDebootstrapStepRunner(vmdb.StepRunnerInterface):
'--components', ','.join(components), suite,
target,
mirror])
+ vmdb.runcmd_chroot(target, ['apt-get', 'update'])