stages/yum: don't name the repositories

See 840bfd580c.

Signed-off-by: Tom Gundersen <teg@jklm.no>
This commit is contained in:
Tom Gundersen 2019-09-29 23:46:37 +02:00 committed by Lars Karlitski
parent db6e933cb8
commit 6ed426773f
3 changed files with 8 additions and 8 deletions

View file

@ -35,8 +35,8 @@ def main(tree, options):
verbosity = options.get("verbosity", "info")
with open("/tmp/yum.conf", "w") as conf:
for repoid, repo in repos.items():
write_repofile(conf, repoid, repo)
for repoid, repo in enumerate(repos):
write_repofile(conf, f"repo{repoid}", repo)
script = f"""
set -e