]> git.phdru.name Git - ansible.git/blobdiff - playbooks/debian/roles/init-system/tasks/python.yml
Feat(apt): Add option `cache_valid_time: 3600`
[ansible.git] / playbooks / debian / roles / init-system / tasks / python.yml
index 584c4f4d25423717354f4c92cb833a737b5d9996..ead9aa5ee235fe4bd64b104eaf1c254296939152 100644 (file)
@@ -3,11 +3,11 @@
   apt:
     autoclean: yes
     autoremove: yes
+    cache_valid_time: 3600
     install_recommends: no
     name: ['python', 'python2.7', 'python3', 'python-pip', 'python3-pip',
            'python-setuptools', 'python3-setuptools',
           ]
-    purge: yes
     state: latest
     update_cache: yes
   register: python
@@ -17,5 +17,5 @@
   shell: 'umask 022; {{ item }} -m pip install --upgrade
       "pip < 19.1" setuptools tox virtualenv virtualenvwrapper "wheel < 0.31.1"
       flake8 sphinx twine'
-  loop: ['python3', 'python2']
   when: python.changed
+  loop: ['python3', 'python2']