|
4 | 4 | # Check if virtualenv is already installed
|
5 | 5 | ##
|
6 | 6 |
|
| 7 | +- name: virtualenv | Check if virtualenv is already installed |
| 8 | + become: true |
| 9 | + stat: path="{{ py24_install }}/bin/virtualenv" |
| 10 | + register: virtualenv24_already_installed |
| 11 | + ignore_errors: True |
| 12 | + when: python_24 |
| 13 | + |
7 | 14 | - name: virtualenv | Check if virtualenv is already installed
|
8 | 15 | become: true
|
9 | 16 | stat: path="{{ py26_install }}/bin/virtualenv"
|
|
22 | 29 | # Virtualenv (only for python 2.x)
|
23 | 30 | ##
|
24 | 31 |
|
| 32 | +- name: virtualenv for 2.4 | Download |
| 33 | + get_url: |
| 34 | + url="{{ venv24_url }}" |
| 35 | + dest="{{ venv24_tar_file }}" |
| 36 | + checksum="md5:{{ venv24_md5 }}" |
| 37 | + when: virtualenv24_already_installed.stat.exists == false and (python_24) |
| 38 | + |
25 | 39 | - name: virtualenv | Download
|
26 | 40 | get_url:
|
27 | 41 | url="{{ venv_url }}"
|
28 | 42 | dest="{{ venv_tar_file }}"
|
29 | 43 | checksum="md5:{{ venv_md5 }}"
|
30 | 44 | when: virtualenv_already_installed.stat.exists == false and (python_26 or python_27)
|
31 | 45 |
|
| 46 | +- name: virtualenv for 2.4 | Uncompress |
| 47 | + unarchive: |
| 48 | + src="{{ venv24_tar_file }}" |
| 49 | + dest=/tmp |
| 50 | + copy=no |
| 51 | + when: virtualenv24_already_installed.stat.exists == false and (python_24) |
| 52 | + |
32 | 53 | - name: virtualenv | Uncompress
|
33 | 54 | unarchive:
|
34 | 55 | src="{{ venv_tar_file }}"
|
35 | 56 | dest=/tmp
|
36 | 57 | copy=no
|
37 | 58 | when: virtualenv_already_installed.stat.exists == false and (python_26 or python_27)
|
38 | 59 |
|
| 60 | +- name: py24 | Install virtualenv |
| 61 | + become: true |
| 62 | + command: "{{ item }}" |
| 63 | + args: |
| 64 | + chdir: "{{ venv24_sources }}" |
| 65 | + creates: "{{ py24_install }}/bin/virtualenv" |
| 66 | + with_items: |
| 67 | + - "{{ py24_bin }} setup.py install" |
| 68 | + when: virtualenv24_already_installed.stat.exists == false and python_24 |
| 69 | + |
39 | 70 | - name: py26 | Install virtualenv
|
40 | 71 | become: true
|
41 | 72 | command: "{{ item }}"
|
|
0 commit comments