Skip to content

Commit

Permalink
Consistency changes
Browse files Browse the repository at this point in the history
* Improved apt: state
  • Loading branch information
tersmitten committed Jan 9, 2017
1 parent 05c05da commit f184477
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,15 +3,15 @@
- name: install dependencies
apt:
name: "{{ item }}"
state: latest
state: "{{ apt_install_state | default('latest') }}"
with_items: "{{ virtualbox_dependencies }}"
tags:
- virtualbox-install-dependencies

- name: install
apt:
name: "{{ item }}"
state: latest
state: "{{ apt_install_state | default('latest') }}"
with_items: "{{ virtualbox_install }}"
tags:
- virtualbox-install-additional

0 comments on commit f184477

Please sign in to comment.