Browse Source

Improve apt cache reload

Emmanuel Bouthenot 7 years ago
parent
commit
76f3a37fa2
2 changed files with 6 additions and 5 deletions
  1. 0 3
      roles/common/handlers/base.yml
  2. 6 2
      roles/common/tasks/base.yml

+ 0 - 3
roles/common/handlers/base.yml

@@ -4,9 +4,6 @@
 - name: Reconfigure timezone
   raw: rm -f /etc/timezone ; dpkg-reconfigure --frontend noninteractive tzdata
 
-- name: Reload apt cache
-  command: apt-get update
-
 - name: Apply kernel configuration (proc)
   service: name=procps state=restarted
 

+ 6 - 2
roles/common/tasks/base.yml

@@ -8,8 +8,12 @@
 
 - name: 'Write /etc/apt/sources.list'
   template: src=apt/sources.{{ ansible_lsb.codename }}.list.j2 dest=/etc/apt/sources.list owner=root group=root mode=0644
-  notify:
-    - 'Reload apt cache'
+  register: apt_sources
+
+- name: 'Refresh apt cache'
+  apt:
+    update_cache: yes
+  when: apt_sources.changed
 
 - name: 'Remove deprecated apt options files'
   file: