chef-sugar 2.3.1 → 2.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/lib/chef/sugar/architecture.rb +1 -1
- data/lib/chef/sugar/version.rb +1 -1
- data/metadata.rb +1 -1
- data/recipes/default.rb +1 -1
- data/spec/unit/chef/sugar/architecture_spec.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 29b7d7e12e7d9ae4b0723f877983a5d42505ae3e
|
|
4
|
+
data.tar.gz: 1e16639547341f9b8e873e84866c5dc040003a48
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7f3cc8734d0598fc2647b67f8e3d98660a8fa7f0c303697bf60c2dce5afcbfeca15a9952a6b535882ca59156b26ad3432f40710e8e46edac2ee29d9d614b1b20
|
|
7
|
+
data.tar.gz: 0e117f83f0dbd560a9bb16c5bfea6a61a01f99bc544d27aa267bddd008680aa02ff5a51557c50c407d9a380b4d374117f4fa203b8c31c28d88d941a8a6f58458
|
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,11 @@ Chef Sugar Changelog
|
|
|
2
2
|
=========================
|
|
3
3
|
This file is used to list changes made in each version of the chef-sugar cookbook and gem.
|
|
4
4
|
|
|
5
|
+
v2.3.2 (2014-10-07)
|
|
6
|
+
-------------------
|
|
7
|
+
### Big Fixues
|
|
8
|
+
- Include `amd64` in `_64_bit?` check
|
|
9
|
+
|
|
5
10
|
v2.3.1 (2014-10-07)
|
|
6
11
|
-------------------
|
|
7
12
|
### Improvements
|
data/lib/chef/sugar/version.rb
CHANGED
data/metadata.rb
CHANGED
data/recipes/default.rb
CHANGED
|
@@ -3,7 +3,7 @@ require 'spec_helper'
|
|
|
3
3
|
describe Chef::Sugar::Architecture do
|
|
4
4
|
it_behaves_like 'a chef sugar'
|
|
5
5
|
|
|
6
|
-
_64_bit_machines = %w(x86_64 ppc64 s390x ia64 sparc64 aarch64 arch64 arm64)
|
|
6
|
+
_64_bit_machines = %w(amd64 x86_64 ppc64 s390x ia64 sparc64 aarch64 arch64 arm64)
|
|
7
7
|
|
|
8
8
|
describe '#_64_bit?' do
|
|
9
9
|
_64_bit_machines.each do |arch|
|