Skip to content

Commit

Permalink
Concistency changes
Browse files Browse the repository at this point in the history
  • Loading branch information
tersmitten committed Dec 22, 2016
1 parent 0795cb9 commit 23d78b5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/pre.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@
- name: pre | install dependencies
apt:
name: "{{ item }}"
state: latest
state: "{{ apt_install_state | default('latest') }}"
update_cache: true
cache_valid_time: "{{ apt_update_cache_valid_time | default(3600) }}"
with_items:
- python
- curl

- name: pre | install setuptools
shell: "curl -sL https://bootstrap.pypa.io/ez_setup.py | python -"
shell: curl -sL https://bootstrap.pypa.io/ez_setup.py | python -
changed_when: false

- name: pre | install pip
Expand Down

0 comments on commit 23d78b5

Please sign in to comment.