Skip to content

Commit

Permalink
Make apt install state configurable
Browse files Browse the repository at this point in the history
  • Loading branch information
tersmitten committed Nov 16, 2016
1 parent c76c422 commit 71f490b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tasks/install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
- name: 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: "{{ rstudio_server_dependencies }}"
Expand All @@ -13,7 +13,7 @@
- name: install | additional
apt:
name: "{{ item }}"
state: latest
state: "{{ apt_install_state | default('latest') }}"
with_items: "{{ rstudio_server_install }}"
tags:
- rstudio-server-install-additional
Expand Down

0 comments on commit 71f490b

Please sign in to comment.