boxgrinder-core 0.3.3 → 0.3.4
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/CHANGELOG +4 -0
- data/boxgrinder-core.gemspec +1 -1
- data/rubygem-boxgrinder-core.spec +4 -3
- data/spec/helpers/appliance-config-helper-spec.rb +4 -4
- metadata +3 -3
data/CHANGELOG
CHANGED
data/boxgrinder-core.gemspec
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
Summary: Core library for BoxGrinder
|
|
7
7
|
Name: rubygem-%{gemname}
|
|
8
|
-
Version: 0.3.
|
|
8
|
+
Version: 0.3.4
|
|
9
9
|
Release: 1%{?dist}
|
|
10
10
|
Group: Development/Languages
|
|
11
11
|
License: LGPLv3+
|
|
@@ -76,12 +76,13 @@ popd
|
|
|
76
76
|
%{gemdir}/doc/%{gemname}-%{version}
|
|
77
77
|
|
|
78
78
|
%changelog
|
|
79
|
+
* Tue Jun 28 2011 Marc Savy <msavy@redhat.com> - 0.3.4-1
|
|
80
|
+
- Upstream release: 0.3.4
|
|
79
81
|
|
|
80
|
-
* Tue Jun
|
|
82
|
+
* Tue Jun 28 2011 Marc Savy <msavy@redhat.com> - 0.3.3-1
|
|
81
83
|
- Upstream release: 0.3.3
|
|
82
84
|
- [BGBUILD-233] BoxGrinder Build fails to report a missing config file
|
|
83
85
|
|
|
84
|
-
|
|
85
86
|
* Tue May 10 2011 Marek Goldmann <mgoldman@redhat.com> - 0.3.2-1
|
|
86
87
|
- Upstream release: 0.3.2
|
|
87
88
|
- [BGBUILD-210] In Fedora 14 parameters are not being expanded, and cause early string truncation.
|
|
@@ -220,7 +220,7 @@ module BoxGrinder
|
|
|
220
220
|
config.hardware.partitions.should == {"/" => {'size' => '4', 'type' => 'ext4', "options"=>"barrier=0,nodelalloc,nobh,noatime"}, "/home" => {'size' => '2', 'type' => 'ext4'}}
|
|
221
221
|
end
|
|
222
222
|
|
|
223
|
-
it "should merge partitions for default fs_types without options for RHEL 5 (
|
|
223
|
+
it "should merge partitions for default fs_types without options for RHEL 5 (ext4)" do
|
|
224
224
|
config_a = ApplianceConfig.new
|
|
225
225
|
config_a.name = 'a'
|
|
226
226
|
config_a.appliances << 'b'
|
|
@@ -241,10 +241,10 @@ module BoxGrinder
|
|
|
241
241
|
|
|
242
242
|
config = @helper.instance_variable_get(:@appliance_config)
|
|
243
243
|
config.hardware.partitions.size.should == 3
|
|
244
|
-
config.hardware.partitions.should == {"/" => {'size' => '4', 'type' => '
|
|
244
|
+
config.hardware.partitions.should == {"/" => {'size' => '4', 'type' => 'ext4'}, "/home" => {'size' => '2', 'type' => 'ext4'}, "/boot" => {'type' => 'ext3', 'size' => 0.1}}
|
|
245
245
|
end
|
|
246
246
|
|
|
247
|
-
it "should merge partitions for default fs_types without options for RHEL 5 (
|
|
247
|
+
it "should merge partitions for default fs_types without options for RHEL 5 (ext4) with /boot partition" do
|
|
248
248
|
config_a = ApplianceConfig.new
|
|
249
249
|
config_a.name = 'a'
|
|
250
250
|
config_a.appliances << 'b'
|
|
@@ -265,7 +265,7 @@ module BoxGrinder
|
|
|
265
265
|
|
|
266
266
|
config = @helper.instance_variable_get(:@appliance_config)
|
|
267
267
|
config.hardware.partitions.size.should == 2
|
|
268
|
-
config.hardware.partitions.should == {"/" => {'size' => '4', 'type' => '
|
|
268
|
+
config.hardware.partitions.should == {"/" => {'size' => '4', 'type' => 'ext4'}, "/boot" => {'size' => '2', 'type' => 'ext4'}}
|
|
269
269
|
end
|
|
270
270
|
|
|
271
271
|
it "should merge partitions with different filesystem types" do
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: boxgrinder-core
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 27
|
|
5
5
|
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 3
|
|
9
|
-
-
|
|
10
|
-
version: 0.3.
|
|
9
|
+
- 4
|
|
10
|
+
version: 0.3.4
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Marek Goldmann
|