X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=lbuild-initvm.sh;h=7320e65db020046b1317d735f90dfa331d7ca8db;hb=1e5e014b2cbf8877f7cb5f2a55cf900ed48f2c7a;hp=6cb112315d8d7f728e3a1829bca49c62c519b6d0;hpb=7184302753532ab2d880a9429028ff0b872ee4cd;p=build.git diff --git a/lbuild-initvm.sh b/lbuild-initvm.sh index 6cb11231..7320e65d 100755 --- a/lbuild-initvm.sh +++ b/lbuild-initvm.sh @@ -129,7 +129,7 @@ function fedora_install() { fedora_download $cache || { echo "Failed to download 'fedora base'"; return 1; } else echo "Updating cache $cache/rootfs ..." - if ! yum --installroot $cache/rootfs -y --nogpgcheck update ; then + if ! yum --installroot $cache/rootfs --releasever $release -y --nogpgcheck update ; then echo "Failed to update 'fedora base', continuing with last known good cache" else echo "Update finished" @@ -208,7 +208,7 @@ function fedora_download() { # So ideally if we want to be able to build f12 images from f18 we need an rpm that has # this patch undone, like we have in place on our f14 boxes (our f14 boxes need a f18-like rpm) - YUM="yum --installroot=$INSTALL_ROOT --nogpgcheck -y" + YUM="yum --installroot=$INSTALL_ROOT --releasever=$release --nogpgcheck -y" echo "$YUM install $FEDORA_PREINSTALLED" $YUM install $FEDORA_PREINSTALLED || { echo "Failed to download rootfs, aborting." ; return 1; }