Displaying 2 results from an estimated 2 matches for "topurl".
2020 Mar 11
1
[PATCH] builder: templates: add the AppStream repo
...ilder/templates/make-template.ml
index 8d26177bf..a4e2f37fb 100755
--- a/builder/templates/make-template.ml
+++ b/builder/templates/make-template.ml
@@ -1238,7 +1238,8 @@ and make_rhel_yum_conf major minor arch =
major major minor in
sprintf "%s/Server/%s/os" topurl arch,
sprintf "%s/source/SRPMS" topurl,
- Some (sprintf "%s/Server/optional/%s/os" arch topurl,
+ Some ("Optional",
+ sprintf "%s/Server/optional/%s/os" arch topurl,
sprintf "%s/Server/optional/sour...
2016 Nov 28
2
[PATCH] builder: Rearrange how template-building scripts work.
...S _), PPC64le ->
+ "console=tty0 console=ttyS0,115200 rd_NO_PLYMOUTH"
+
+and make_rhel_yum_conf major minor arch =
+ let buf = Buffer.create 4096 in
+ let bpf fs = bprintf buf fs in
+
+ let baseurl, srpms, optional =
+ match major, arch with
+ | 5, X86_64 ->
+ let topurl =
+ sprintf "http://download.devel.redhat.com/released/RHEL-5-Server/U%d"
+ minor in
+ sprintf "%s/x86_64/os/Server" topurl,
+ sprintf "%s/source/SRPMS" topurl,
+ None
+ | 6, X86_64 ->
+ let topurl =
+ sprin...