Use update_cache when possible

This commit is contained in:
ant31 2016-01-25 02:06:34 +01:00
parent 8f7d552401
commit f5508b1794

View file

@ -33,6 +33,12 @@
always_run: True
tags: always
- name: Update package management cache
action:
module: "{{ ansible_pkg_mgr }}"
update_cache: yes
when: ansible_pkg_mgr in ['apt', 'yum']
- name: Install python-apt for Debian distribs
shell: apt-get install -y python-apt
when: ansible_os_family == "Debian"