]> git.apps.os.sepia.ceph.com Git - ceph-ansible.git/commitdiff
Do not use latest package 321/head
authorleseb <seb@redhat.com>
Tue, 7 Jul 2015 08:39:05 +0000 (10:39 +0200)
committerleseb <seb@redhat.com>
Tue, 7 Jul 2015 08:39:05 +0000 (10:39 +0200)
While re-running the playbook we do not want to check for new packages.
We shouldn't perform upgrades, we leave this to the operators.

Signed-off-by: leseb <seb@redhat.com>
roles/ceph-common/tasks/install_on_debian.yml
roles/ceph-common/tasks/install_on_redhat.yml

index 6cb648028f770360ddf773052c0145baf54c14b5..db323a97706a77a2feef3085237f6e58466b5cc6 100644 (file)
@@ -52,7 +52,7 @@
 - name: install Ceph
   apt: >
     pkg={{ item }}
-    state=latest
+    state=present
   with_items:
     - ceph
     - ceph-common    #|
index 1e6def9faac675fe4200ff682bc50040ff021f64..57ce50153dee751c890c4f0cc6b60ec2fd768aaf 100644 (file)
 - name: install Ceph
   yum: >
     name=ceph
-    state=latest
+    state=present
   when: not ceph_stable_rh_storage
 
 - name: install red hat storage ceph mon
   yum: >
     name={{ item }}
-    state=latest
+    state=present
   with_items:
     - ceph
     - ceph-mon
@@ -86,7 +86,7 @@
 - name: install red hat storage ceph osd
   yum: >
     name={{ item }}
-    state=latest
+    state=present
   with_items:
     - ceph
     - ceph-osd