summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndy Doan <andy@opensourcefoundries.com>2018-06-19 13:34:57 -0500
committerAndy Doan <andy@opensourcefoundries.com>2018-06-19 13:34:57 -0500
commit99486d0c3af5dcb8363b635dc689b2bef3c333bd (patch)
tree0b4060586f9d679103c8bd6fa4e6b2dfb9bb32ca
parentf1896dc2d54dcaa23a6398d0544aef0243b329e0 (diff)
mirror: Use direct link to google storage bucket
Our lmp-mirror site is effectively doing redirects to google storage. This change will help us remove that service and probably have things be more reliable since it will avoid a couple of network hops. Signed-off-by: Andy Doan <andy@opensourcefoundries.com>
-rw-r--r--conf/distro/include/lmp.inc14
1 files changed, 7 insertions, 7 deletions
diff --git a/conf/distro/include/lmp.inc b/conf/distro/include/lmp.inc
index 8ba37dd..41f666a 100644
--- a/conf/distro/include/lmp.inc
+++ b/conf/distro/include/lmp.inc
@@ -38,14 +38,14 @@ INHERIT += "image-buildinfo"
BUILDHISTORY_COMMIT = "1"
PREMIRRORS ??= "\
- git://.*/.* https://lmp-mirror.foundries.io/downloads/ \n \
- ftp://.*/.* https://lmp-mirror.foundries.io/downloads/ \n \
- http://.*/.* https://lmp-mirror.foundries.io/downloads/ \n \
- https://.*/.* https://lmp-mirror.foundries.io/downloads/ \n \
+ git://.*/.* https://storage.googleapis.com/lmp-cache/downloads/ \n \
+ ftp://.*/.* https://storage.googleapis.com/lmp-cache/downloads/ \n \
+ http://.*/.* https://storage.googleapis.com/lmp-cache/downloads/ \n \
+ https://.*/.* https://storage.googleapis.com/lmp-cache/downloads/ \n \
"
MIRRORS =+ "\
- ftp://.*/.* https://lmp-mirror.foundries.io/downloads/ \n \
- http://.*/.* https://lmp-mirror.foundries.io/downloads/ \n \
- https://.*/.* https://lmp-mirror.foundries.io/downloads/ \n \
+ ftp://.*/.* https://storage.googleapis.com/lmp-cache/downloads/ \n \
+ http://.*/.* https://storage.googleapis.com/lmp-cache/downloads/ \n \
+ https://.*/.* https://storage.googleapis.com/lmp-cache/downloads/ \n \
"