[ykaul@ykaul ovirt-system-tests]$ git diff
diff --git a/common/deploy-scripts/add_local_repo.sh b/common/deploy-scripts/add_local_repo.sh
index 251fcaf..78f2eec 100644
--- a/common/deploy-scripts/add_local_repo.sh
+++ b/common/deploy-scripts/add_local_repo.sh
@@ -5,7 +5,7 @@ ADDR=$(ip -4 addr show scope global up |grep -m1 inet | awk '{split($4,a,"."); p
cat > /etc/yum.repos.d/local-ovirt.repo <<EOF
[alocalsync]
name=Latest oVirt nightly
-baseurl=http://$ADDR:8585/$DIST/
+baseurl=http://$ADDR:8585/default/$DIST/
enabled=1
skip_if_unavailable=1
gpgcheck=0
diff --git a/common/deploy-scripts/add_local_repo_no_ext_access.sh b/common/deploy-scripts/add_local_repo_no_ext_access.sh
index aa40797..984b7f1 100644
--- a/common/deploy-scripts/add_local_repo_no_ext_access.sh
+++ b/common/deploy-scripts/add_local_repo_no_ext_access.sh
@@ -5,7 +5,7 @@ ADDR=$(ip -4 addr show scope global up |grep -m1 inet | awk '{split($4,a,"."); p
cat > /etc/yum.repos.d/local-ovirt.repo <<EOF
[alocalsync]
name=Latest oVirt nightly
-baseurl=http://$ADDR:8585/$DIST/
+baseurl=http://$ADDR:8585/default/$DIST/
enabled=1
skip_if_unavailable=1
gpgcheck=0
Gail - can you check if it's due to:
commit 1dd1f3c238806cf0195868a16e753677abc57f30
Date: Tue Apr 10 15:18:16 2018 +0300
reposetup: Allow to create multiple internal repos
This change introduce a new flag (--repo-name) to the reposetup command.
The flag indicates the name of the internal repo to create.
Multiple internal repos can be created, all of them will be available
with "lago ovirt serve".
The following illustrates the directory structure of multiple internal
repos:
.lago/default/internal_repo/
├── default
│ └── el7
│ └── repodata
└── my-custom-repo
└── el7
└── repodata