chef-metal 0.10 → 0.10.1
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 -1
- data/lib/chef/provider/machine.rb +3 -3
- data/lib/chef_metal/version.rb +1 -1
- data/spec/integration/machine.rb +0 -0
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 75907d8e5aa3714df11b2d37090fb42babe16499
|
4
|
+
data.tar.gz: 61cadff437fe83b341b74da8d41d9d0164c670c7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6b46ef77e100475dd856861eb9db77202919dd28150b7606b9deddd8658c7594c2922755aaae0b2c9af71f71905f8b33b9a31dcb15e79dc9fffaba338d5981a2
|
7
|
+
data.tar.gz: 4fd6d879cb7d174f5ef65b7af723f4079e017f04975f42e4c6f9346e2888485aec7b3b3b70a1ca56d74e6678ee0a3b6483c54ef05f5b3c80c57ffb4f6d76bbde
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,10 @@
|
|
1
1
|
# Chef Metal Changelog
|
2
2
|
|
3
|
-
##
|
3
|
+
## 0.10.1 (5/2/2014)
|
4
|
+
|
5
|
+
- Fix a crash when uploading files in a machine batch
|
6
|
+
|
7
|
+
## 0.10 (5/1/2014)
|
4
8
|
|
5
9
|
- Parallelism!
|
6
10
|
- All machines by default will be created in parallel just before the first "machine" definition. They will attempt to run all the way to converge. If they fail, add "with_machine_batch 'mybatch', :setup"
|
@@ -73,12 +73,12 @@ class Chef::Provider::Machine < Chef::Provider::LWRPBase
|
|
73
73
|
files.each_pair do |remote_file, local|
|
74
74
|
if local.is_a?(Hash)
|
75
75
|
if local[:local_path]
|
76
|
-
machine.upload_file(
|
76
|
+
machine.upload_file(action_handler, local[:local_path], remote_file)
|
77
77
|
else
|
78
|
-
machine.write_file(
|
78
|
+
machine.write_file(action_handler, remote_file, local[:content])
|
79
79
|
end
|
80
80
|
else
|
81
|
-
machine.upload_file(
|
81
|
+
machine.upload_file(action_handler, local, remote_file)
|
82
82
|
end
|
83
83
|
end
|
84
84
|
end
|
data/lib/chef_metal/version.rb
CHANGED
File without changes
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: chef-metal
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 0.10.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- John Keiser
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-05-
|
11
|
+
date: 2014-05-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: chef
|
@@ -181,6 +181,7 @@ files:
|
|
181
181
|
- lib/chef_metal/transport.rb
|
182
182
|
- lib/chef_metal/version.rb
|
183
183
|
- lib/chef_metal.rb
|
184
|
+
- spec/integration/machine.rb
|
184
185
|
- bin/metal
|
185
186
|
homepage: http://wiki.opscode.com/display/chef
|
186
187
|
licenses: []
|