Skip to content

Commit

Permalink
fix(venvs): missing quotes and curly braces
Browse files Browse the repository at this point in the history
  • Loading branch information
gforcada committed May 11, 2024
1 parent 6a2c96a commit 3f3985a
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions tasks/venvs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,22 @@
ansible.builtin.include_tasks:
file: venv.yml
vars:
py_data: py24
venv_data: venv24
py_data: "{{ py24 }}"
venv_data: "{{ venv24 }}"
when: python_24

- name: Install Virtualenv for Python 2.6
ansible.builtin.include_tasks:
file: venv.yml
vars:
py_data: py26
venv_data: venv26
py_data: "{{ py26 }}"
venv_data: "{{ venv26 }}"
when: python_26

- name: Install Virtualenv for Python 2.7
ansible.builtin.include_tasks:
file: venv.yml
vars:
py_data: py27
venv_data: venv27
py_data: "{{ py27 }}"
venv_data: "{{ venv27 }}"
when: python_27

0 comments on commit 3f3985a

Please sign in to comment.