diff --git a/yum/README.md b/yum/README.md index e2d08f502..78e61f47c 100644 --- a/yum/README.md +++ b/yum/README.md @@ -5,6 +5,14 @@ Configures various YUM components on Red Hat-like systems. Includes LWRP for ma Based on the work done by Eric Wolfe and Charles Duffy on the yumrepo cookbook. http://github.com/atomic-penguin/cookbooks/tree/yumrepo/yumrepo +Changes +======= + +## v.0.1.2: + +* Remove yum update in default recipe, that doesn't update caches, it + updates packages installed. + Requirements ============ RHEL, CentOS or Scientific Linux 5.x or newer. It has not been tested on other platforms or earlier versions. RHEL 6 support is untested (testing and patches are welcome). diff --git a/yum/metadata.rb b/yum/metadata.rb index ffaba54ff..50529eac9 100644 --- a/yum/metadata.rb +++ b/yum/metadata.rb @@ -2,7 +2,7 @@ maintainer_email "cookbooks@opscode.com" license "Apache 2.0" long_description IO.read(File.join(File.dirname(__FILE__), 'README.md')) -version "0.1.1" +version "0.1.2" recipe "yum", "Runs 'yum update' during compile phase" recipe "yum::yum", "manages yum configuration" diff --git a/yum/recipes/default.rb b/yum/recipes/default.rb index 82cbba658..9bc90f256 100644 --- a/yum/recipes/default.rb +++ b/yum/recipes/default.rb @@ -16,5 +16,3 @@ # See the License for the specific language governing permissions and # limitations under the License. # - -execute "yum update -y"