From 7c32272cc8a0a42ce73c02c829d9bd95470291e9 Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Fri, 15 Sep 2017 19:56:35 -0700 Subject: [PATCH] Include arch in branched virt-install URL ...*this* should be right. --- createhdds.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/createhdds.py b/createhdds.py index 6d41d55..da6fc3d 100755 --- a/createhdds.py +++ b/createhdds.py @@ -276,7 +276,7 @@ class VirtInstallImage(object): loctmp = "https://dl.fedoraproject.org/pub/{0}/development/rawhide/{2}/{3}/os" elif int(self.release) > fedfind.helpers.get_current_release(branched=False): # branched - loctmp = "https://dl.fedoraproject.org/pub/{0}/development/{1}/{2}/os/" + loctmp = "https://dl.fedoraproject.org/pub/{0}/development/{1}/{2}/{3}/os/" else: loctmp = "https://download.fedoraproject.org/pub/{0}/releases/{1}/{2}/{3}/os/" xargs = "inst.ks=file:/{0}.ks".format(self.name)