Skip to content
Snippets Groups Projects
Commit b4e8b8ad authored by André Anjos's avatar André Anjos :speech_balloon:
Browse files

[bootstrap] Use apache2 reverse proxy instead of mirror

parent 7a36ccf1
No related branches found
No related tags found
1 merge request!222Use apache2 reverse proxy instead of mirror
Pipeline #51341 passed
...@@ -454,13 +454,13 @@ if __name__ == "__main__": ...@@ -454,13 +454,13 @@ if __name__ == "__main__":
logger.info("(create) %s", condarc) logger.info("(create) %s", condarc)
with open(condarc, "wt") as f: with open(condarc, "wt") as f:
# Replaces https://repo.anaconda.com/pkgs/main by # Replaces https://repo.anaconda.com/pkgs/main by
# http://www.idiap.ch/software/bob/defaults with so it is optimized for # http://bobconda.lab.idiap.ch:8000, so it is optimized for
# a CI build. Notice we consider this script is only executed in this # a CI build. Notice we consider this script is only executed in this
# context. The URL should NOT work outside of Idiap's network. # context. The URL should NOT work outside of Idiap's network.
f.write( f.write(
_BASE_CONDARC.replace( _BASE_CONDARC.replace(
"https://repo.anaconda.com/pkgs/main", "https://repo.anaconda.com",
"http://www.idiap.ch/defaults", "http://bobconda.lab.idiap.ch:8000",
) )
) )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment