ARTbio / GalaxyKickStart

Ansible playbooks for Galaxy Server deployment
GNU General Public License v3.0
24 stars 22 forks source link

miniconda https issue behind proxy #243

Closed colindaven closed 7 years ago

colindaven commented 7 years ago

As we discussed previously, ansible does not support https proxies.

This is a problem for the miniconda installation.

One workaround is manual download of miniconda to /tmp/

wget https://repo.continuum.io/miniconda/Miniconda3-3.19.0-Linux-x86_64.sh
cp Miniconda3-3.19.0-Linux-x86_64.sh /tmp/

The ansible "miniconda installer is downloaded" must be set to ignore errors if this is to succeed (below, the second line in this code was added).

nano GalaxyKickStart/roles/miniconda-role/tasks/main.yml

Perhaps an alternative solution would be to do a quick and dirty wget to /tmp/ if the task fails ?