From 31217984e0eb8df5af6c4f3116a8d239fe7bf825 Mon Sep 17 00:00:00 2001 From: Maciej Galkiewicz Date: Sun, 5 May 2013 11:32:54 +0200 Subject: [PATCH] Ceph packages should not be upgraded during chef run. It may cause downtime for example when ceph versions are backward incompatible. --- recipes/default.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/recipes/default.rb b/recipes/default.rb index 8cb9395..389de9a 100644 --- a/recipes/default.rb +++ b/recipes/default.rb @@ -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