From ecc6b0f62ad86bd8bbc00fb757b1c0cf6ea9b27a Mon Sep 17 00:00:00 2001 From: Tomas Mlcoch Date: Wed, 9 Sep 2015 07:58:18 -0400 Subject: [PATCH] Initialize phases in their usage order --- bin/pungi-koji | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/pungi-koji b/bin/pungi-koji index 32f0e2cf..6a6ef2cb 100755 --- a/bin/pungi-koji +++ b/bin/pungi-koji @@ -204,11 +204,11 @@ def run_compose(compose): # initialize all phases init_phase = pungi.phases.InitPhase(compose) pkgset_phase = pungi.phases.PkgsetPhase(compose) - createrepo_phase = pungi.phases.CreaterepoPhase(compose) buildinstall_phase = pungi.phases.BuildinstallPhase(compose) - productimg_phase = pungi.phases.ProductimgPhase(compose, pkgset_phase) gather_phase = pungi.phases.GatherPhase(compose, pkgset_phase) extrafiles_phase = pungi.phases.ExtraFilesPhase(compose, pkgset_phase) + createrepo_phase = pungi.phases.CreaterepoPhase(compose) + productimg_phase = pungi.phases.ProductimgPhase(compose, pkgset_phase) createiso_phase = pungi.phases.CreateisoPhase(compose) liveimages_phase = pungi.phases.LiveImagesPhase(compose) image_build_phase = pungi.phases.ImageBuildPhase(compose)