bosh-stemcell 1.3074.0 → 1.3087.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/bosh/stemcell/build_environment.rb +2 -0
- data/lib/bosh/stemcell/stage_collection.rb +15 -5
- data/lib/bosh/stemcell/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 31f64c5ba4fe1a62202af4d9226092ca4836948b
|
4
|
+
data.tar.gz: 0555179edae29d2b1f2194b2f8c48e022f83e468
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b3335c420b6cb89f2b92eafc38e52d8db892b6a69f43c16abd39f98130302be655925e6e296ea9880f09281a6f3de16501dcbf90d06252049837b1b3c1a48ac9
|
7
|
+
data.tar.gz: d876b116498a27166ceeb7d7ced76f33f1bc0f6a13d397544087a7130c77bb936493ba8970204a653ada633b494e7aae7f66c0b85ad2309e432ca3a1c521fb9d
|
@@ -52,11 +52,13 @@ module Bosh::Stemcell
|
|
52
52
|
"cd #{STEMCELL_SPECS_DIR};",
|
53
53
|
"STEMCELL_IMAGE=#{image_file_path}",
|
54
54
|
"STEMCELL_WORKDIR=#{work_path}",
|
55
|
+
"OS_NAME=#{operating_system.name}",
|
55
56
|
"bundle exec rspec -fd#{exclude_exclusions}",
|
56
57
|
"spec/os_image/#{operating_system_spec_name}_spec.rb",
|
57
58
|
"spec/stemcells/#{operating_system_spec_name}_spec.rb",
|
58
59
|
"spec/stemcells/#{agent.name}_agent_spec.rb",
|
59
60
|
"spec/stemcells/#{infrastructure.name}_spec.rb",
|
61
|
+
'spec/stemcells/stig_spec.rb'
|
60
62
|
].join(' ')
|
61
63
|
end
|
62
64
|
|
@@ -85,6 +85,7 @@ module Bosh::Stemcell
|
|
85
85
|
:bosh_disable_password_authentication,
|
86
86
|
:bosh_openstack_agent_settings,
|
87
87
|
:disable_blank_passwords,
|
88
|
+
:bosh_clean_ssh,
|
88
89
|
:image_create,
|
89
90
|
:image_install_grub,
|
90
91
|
]
|
@@ -101,6 +102,7 @@ module Bosh::Stemcell
|
|
101
102
|
:bosh_disable_password_authentication,
|
102
103
|
:bosh_openstack_agent_settings,
|
103
104
|
:disable_blank_passwords,
|
105
|
+
:bosh_clean_ssh,
|
104
106
|
# Image/bootloader
|
105
107
|
:image_create,
|
106
108
|
:image_install_grub,
|
@@ -125,6 +127,7 @@ module Bosh::Stemcell
|
|
125
127
|
:bosh_harden,
|
126
128
|
:bosh_vsphere_agent_settings,
|
127
129
|
:disable_blank_passwords,
|
130
|
+
:bosh_clean_ssh,
|
128
131
|
:image_create,
|
129
132
|
:image_install_grub,
|
130
133
|
]
|
@@ -140,6 +143,7 @@ module Bosh::Stemcell
|
|
140
143
|
:bosh_harden,
|
141
144
|
:bosh_vsphere_agent_settings,
|
142
145
|
:disable_blank_passwords,
|
146
|
+
:bosh_clean_ssh,
|
143
147
|
# Image/bootloader
|
144
148
|
:image_create,
|
145
149
|
:image_install_grub,
|
@@ -158,6 +162,7 @@ module Bosh::Stemcell
|
|
158
162
|
:bosh_harden,
|
159
163
|
:bosh_vsphere_agent_settings,
|
160
164
|
:disable_blank_passwords,
|
165
|
+
:bosh_clean_ssh,
|
161
166
|
:image_create,
|
162
167
|
:image_install_grub,
|
163
168
|
]
|
@@ -173,6 +178,7 @@ module Bosh::Stemcell
|
|
173
178
|
:bosh_harden,
|
174
179
|
:bosh_vsphere_agent_settings,
|
175
180
|
:disable_blank_passwords,
|
181
|
+
:bosh_clean_ssh,
|
176
182
|
# Image/bootloader
|
177
183
|
:image_create,
|
178
184
|
:image_install_grub,
|
@@ -192,6 +198,7 @@ module Bosh::Stemcell
|
|
192
198
|
:bosh_disable_password_authentication,
|
193
199
|
:bosh_aws_agent_settings,
|
194
200
|
:disable_blank_passwords,
|
201
|
+
:bosh_clean_ssh,
|
195
202
|
# Image/bootloader
|
196
203
|
:image_create,
|
197
204
|
:image_install_grub,
|
@@ -206,6 +213,7 @@ module Bosh::Stemcell
|
|
206
213
|
# Finalisation
|
207
214
|
:bosh_clean,
|
208
215
|
:bosh_harden,
|
216
|
+
:bosh_clean_ssh,
|
209
217
|
# only used for spec test
|
210
218
|
:image_create,
|
211
219
|
]
|
@@ -214,6 +222,7 @@ module Bosh::Stemcell
|
|
214
222
|
def centos_os_stages
|
215
223
|
[
|
216
224
|
:base_centos,
|
225
|
+
:base_runsvdir,
|
217
226
|
:base_centos_packages,
|
218
227
|
:base_file_permission,
|
219
228
|
:base_ssh,
|
@@ -231,6 +240,7 @@ module Bosh::Stemcell
|
|
231
240
|
def rhel_os_stages
|
232
241
|
[
|
233
242
|
:base_rhel,
|
243
|
+
:base_runsvdir,
|
234
244
|
:base_centos_packages,
|
235
245
|
:base_file_permission,
|
236
246
|
:base_ssh,
|
@@ -282,11 +292,11 @@ module Bosh::Stemcell
|
|
282
292
|
|
283
293
|
def bosh_steps
|
284
294
|
[
|
285
|
-
|
286
|
-
|
287
|
-
|
288
|
-
|
289
|
-
|
295
|
+
:bosh_sysctl,
|
296
|
+
:bosh_users,
|
297
|
+
:bosh_monit,
|
298
|
+
:bosh_ntpdate,
|
299
|
+
:bosh_sudoers,
|
290
300
|
]
|
291
301
|
end
|
292
302
|
|
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.3087.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Pivotal
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-09-
|
11
|
+
date: 2015-09-25 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.3087.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.3087.0
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: fakefs
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|