]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph-cookbooks.git/commitdiff
Ceph packages should not be upgraded during chef run. 25/head
authorMaciej Galkiewicz <macias@shellycloud.com>
Sun, 5 May 2013 09:32:54 +0000 (11:32 +0200)
committerMaciej Galkiewicz <macias@shellycloud.com>
Tue, 7 May 2013 11:20:01 +0000 (13:20 +0200)
It may cause downtime for example when ceph versions are
backward incompatible.

recipes/default.rb

index 8cb93957a28a90d72981a86807a798758ea8ea6c..389de9a9e762d2d9d6e1b6ffe297f85e15d27a4c 100644 (file)
@@ -47,7 +47,7 @@ when "rhel", "fedora"
 end
 
 packages.each do |pkg|
-       package pkg do
-               action :upgrade
-       end
+  package pkg do
+    action :install
+  end
 end