From 4cb0a99ec39c3c1e07a8cc5f426e84ddeac4e62e Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Wed, 2 Mar 2016 09:12:41 -0800 Subject: [PATCH] add /Everything/ to REPOSITORY_VARIATION with Pungi 4, the public repos are product-y, we need to add /Everything/ to the path between the release and the arch. Again pushing without review to get the tests working. --- tests/_boot_to_anaconda.pm | 2 +- tests/install_source_variation.pm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/_boot_to_anaconda.pm b/tests/_boot_to_anaconda.pm index e55a732f..f73999de 100644 --- a/tests/_boot_to_anaconda.pm +++ b/tests/_boot_to_anaconda.pm @@ -43,7 +43,7 @@ sub run { # REPOSITORY_VARIATION should be set to repository URL without version and architecture # appended (it will be appended automatically) - $repourl = get_var("REPOSITORY_VARIATION")."/".lc(get_var("VERSION"))."/".get_var("ARCH")."/os"; + $repourl = get_var("REPOSITORY_VARIATION")."/".lc(get_var("VERSION"))."/Everything/".get_var("ARCH")."/os"; type_string " inst.repo=".$repourl; } diff --git a/tests/install_source_variation.pm b/tests/install_source_variation.pm index a4c3c0c2..c90fa22c 100644 --- a/tests/install_source_variation.pm +++ b/tests/install_source_variation.pm @@ -10,7 +10,7 @@ sub run { my $repourl = ""; - $repourl = get_var("REPOSITORY_VARIATION")."/".lc(get_var("VERSION"))."/".get_var("ARCH")."/os"; + $repourl = get_var("REPOSITORY_VARIATION")."/".lc(get_var("VERSION"))."/Everything/".get_var("ARCH")."/os"; # check that the repo was used $self->root_console;