bosh-stemcell 1.3202.0 → 1.3213.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e57340591d3c7313e3479bb6664571c0f2842fb7
|
4
|
+
data.tar.gz: a0fabd0857f54300c26767a3e36de0bc4b379b48
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 97be8c063f5d75030b5af2258166e663dde7005e3122acabc5c2930c38f4fd2e369921a619c86f13aba7c5a78e68aa1d5271d180b49d8bcb3635cb5436dec6e0
|
7
|
+
data.tar.gz: bc43156d1d5b1914d79d92c0775a19260c3010c2f3ff9bac82df4a52556448ce948b7e4cdc8091928fa0b6f46608662bfb1eb97cabb4c4c259c55bb7a8fa74d6
|
@@ -73,7 +73,7 @@ module Bosh::Stemcell
|
|
73
73
|
|
74
74
|
def bosh_micro_options
|
75
75
|
{
|
76
|
-
'bosh_micro_enabled' => 'yes',
|
76
|
+
'bosh_micro_enabled' => environment.fetch('BOSH_MICRO_ENABLED', 'yes'),
|
77
77
|
'bosh_micro_package_compiler_path' => File.join(source_root, 'bosh-release'),
|
78
78
|
'bosh_micro_manifest_yml_path' => File.join(source_root, 'release', 'micro', "#{infrastructure.name}.yml"),
|
79
79
|
'bosh_micro_release_tgz_path' => bosh_micro_release_tgz_path,
|
@@ -19,7 +19,6 @@ module Bosh::Stemcell
|
|
19
19
|
mount_command = "sudo mount #{device_path} #{image_mount_point}"
|
20
20
|
shell.run(mount_command, output_command: verbose)
|
21
21
|
rescue => e
|
22
|
-
puts "Failed to mount with error #{e.inspect}"
|
23
22
|
raise e unless e.message.include?(mount_command)
|
24
23
|
|
25
24
|
sleep 0.5
|
@@ -11,7 +11,10 @@ module Bosh::Stemcell
|
|
11
11
|
end
|
12
12
|
|
13
13
|
def build
|
14
|
-
|
14
|
+
unless 'no' == ENV['BOSH_MICRO_ENABLED']
|
15
|
+
gem_components.build_release_gems
|
16
|
+
end
|
17
|
+
|
15
18
|
environment.prepare_build
|
16
19
|
|
17
20
|
stemcell_stages = collection.extract_operating_system_stages +
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bosh-stemcell
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.3213.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Pivotal
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-
|
11
|
+
date: 2016-03-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bosh_aws_cpi
|
@@ -30,14 +30,14 @@ dependencies:
|
|
30
30
|
requirements:
|
31
31
|
- - "~>"
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: 1.
|
33
|
+
version: 1.3213.0
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
38
|
- - "~>"
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version: 1.
|
40
|
+
version: 1.3213.0
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: fakefs
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|