]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph-ansible.git/commitdiff
forced an apt-get update prior to installing any packages from Ceph repos 1036/head
authorSimon Weald <simon@simonweald.com>
Mon, 17 Oct 2016 14:37:26 +0000 (15:37 +0100)
committerSimon Weald <simon@simonweald.com>
Mon, 17 Oct 2016 14:37:26 +0000 (15:37 +0100)
roles/ceph-common/tasks/installs/install_on_debian.yml

index d2f8ae49b7a9075c8c632e55f018cd2343e6a5f5..1f0ceeda3d01999c0f776ca5e29e3e27ca1f488a 100644 (file)
@@ -14,6 +14,7 @@
 - name: install ceph
   apt:
     name: "{{ item }}"
+    update_cache: yes
     state: "{{ (upgrade_ceph_packages|bool) | ternary('latest','present') }}"
     default_release: "{{ ceph_stable_release_uca | default(ansible_distribution_release) }}{{ '-backports' if ceph_origin == 'distro' and ceph_use_distro_backports else ''}}"
   with_items: "{{debian_ceph_packages}}"