diff options
Diffstat (limited to 'lib/Iurt')
-rw-r--r-- | lib/Iurt/Chroot.pm | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/Iurt/Chroot.pm b/lib/Iurt/Chroot.pm index f0cf512..86ada27 100644 --- a/lib/Iurt/Chroot.pm +++ b/lib/Iurt/Chroot.pm @@ -102,11 +102,6 @@ sub clean_and_build_chroot { } } - # We may have media not used to create the chroot (when building for updates_testing - # or if using additional_media) so need to update basesystem packages. - my $urpmi = $run->{urpmi}; - $urpmi->update($chroot); - 1; } @@ -322,6 +317,11 @@ sub create_build_chroot { } } + # We may have media not used to create the chroot (when building for updates_testing + # or if using additional_media) so need to update basesystem packages. + my $urpmi = $run->{urpmi}; + $urpmi->update($chroot); + if ($ret && $use_netns) { sudo($config, '--netns_create', $chroot); } |