CloudyScripts 1.8.35 → 1.8.36
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.
- data/Rakefile +1 -1
- data/lib/scripts/ec2/ami2_ebs_conversion.rb +1 -1
- metadata +4 -4
data/Rakefile
CHANGED
|
@@ -12,7 +12,7 @@ require 'rake/testtask'
|
|
|
12
12
|
|
|
13
13
|
spec = Gem::Specification.new do |s|
|
|
14
14
|
s.name = 'CloudyScripts'
|
|
15
|
-
s.version = '1.8.
|
|
15
|
+
s.version = '1.8.36'
|
|
16
16
|
s.has_rdoc = true
|
|
17
17
|
s.extra_rdoc_files = ['README.rdoc', 'LICENSE']
|
|
18
18
|
s.summary = 'Scripts to facilitate programming for infrastructure clouds.'
|
|
@@ -115,7 +115,7 @@ class Ami2EbsConversion < Ec2Script
|
|
|
115
115
|
# get root partition label and filesystem type
|
|
116
116
|
@context[:label] = get_root_partition_label()
|
|
117
117
|
@context[:fs_type] = get_root_partition_fs_type()
|
|
118
|
-
create_labeled_fs(@context[:dns_name],
|
|
118
|
+
create_labeled_fs(@context[:dns_name], @context[:temp_device_name], @context[:fs_type], @context[:label])
|
|
119
119
|
FileSystemCreated.new(@context)
|
|
120
120
|
end
|
|
121
121
|
end
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: CloudyScripts
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 127
|
|
5
5
|
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 1
|
|
8
8
|
- 8
|
|
9
|
-
-
|
|
10
|
-
version: 1.8.
|
|
9
|
+
- 36
|
|
10
|
+
version: 1.8.36
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Matthias Jung
|
|
@@ -15,7 +15,7 @@ autorequire:
|
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
17
|
|
|
18
|
-
date: 2011-08-
|
|
18
|
+
date: 2011-08-10 00:00:00 +00:00
|
|
19
19
|
default_executable:
|
|
20
20
|
dependencies:
|
|
21
21
|
- !ruby/object:Gem::Dependency
|