Skip to content

Commit

Permalink
Use present in apt tasks instead of installed (#289)
Browse files Browse the repository at this point in the history
  • Loading branch information
mamedin authored Mar 13, 2020
1 parent cefcb2b commit e4e3ab7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions tasks/acceptance-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
- name: "Install packages"
apt:
pkg: "{{ item }}"
state: installed
state: present
update_cache: yes
cache_valid_time: 3600
with_items:
Expand Down Expand Up @@ -77,7 +77,7 @@
- name: "Install packages"
apt:
pkg: "google-chrome-stable"
state: installed
state: present
update_cache: yes
cache_valid_time: 3600
when: "'Chrome' in archivematica_src_acceptance_tests_browser_list"
Expand Down
2 changes: 1 addition & 1 deletion tasks/fixity.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
- name: "Install required deb packages "
apt:
name: "{{ item }}"
state: installed
state: present
with_items:
- "sqlite3"
- "moreutils"
Expand Down

0 comments on commit e4e3ab7

Please sign in to comment.