diff options
author | Kevin Hilman <khilman@baylibre.com> | 2018-05-03 11:48:05 -0700 |
---|---|---|
committer | Kevin Hilman <khilman@baylibre.com> | 2018-05-03 11:48:10 -0700 |
commit | 4896b30be18ddabf7565cc8ed89a90de86a22bbc (patch) | |
tree | f650542bb7a7b52cb1c3087110177c5baf4b68bd /templates/config/default.cfg | |
parent | 935943940a311c3484397d772a48b9a0ac4b1ba6 (diff) |
templates/config: use HTTP URLs for downloads
LAVA labs often use a caching proxy (e.g. squid) for caching
downloads. Change the URLs for download.automotivelinux.org to use
HTTP instead of HTTPS so that squid can cache them.
Change-Id: I5c9e7bead20e0d372a6208f229edd127531ffa09
Signed-off-by: Kevin Hilman <khilman@baylibre.com>
Diffstat (limited to 'templates/config/default.cfg')
-rw-r--r-- | templates/config/default.cfg | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/templates/config/default.cfg b/templates/config/default.cfg index 59aab72..c75300b 100644 --- a/templates/config/default.cfg +++ b/templates/config/default.cfg @@ -1,18 +1,18 @@ [infra] style = AGL [default] -urlbase = https://download.automotivelinux.org/AGL/release/eel/5.0.0/ +urlbase = http://download.automotivelinux.org/AGL/release/eel/5.0.0/ test_plan = ["smoke"] [dab] -urlbase = https://download.automotivelinux.org/AGL/release/dab/4.0.2/ +urlbase = http://download.automotivelinux.org/AGL/release/dab/4.0.2/ test_plan = [] [release] -urlbase = https://download.automotivelinux.org/AGL/release/ +urlbase = http://download.automotivelinux.org/AGL/release/ test_plan = ["all"] [weekly] [daily] -urlbase = https://download.automotivelinux.org/AGL/snapshots/ +urlbase = http://download.automotivelinux.org/AGL/snapshots/ test_plan = ["smoke", "yocto-ptest"] [ci] -urlbase = https://download.automotivelinux.org/AGL/upload/ci/ +urlbase = http://download.automotivelinux.org/AGL/upload/ci/ test_plan = ["smoke"] |