beaker-pe 2.1.7 → 2.1.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CODEOWNERS +4 -0
- data/PULL_REQUEST_TEMPLATE.md +0 -4
- data/lib/beaker-pe/install/pe_utils.rb +2 -1
- data/lib/beaker-pe/version.rb +1 -1
- metadata +3 -3
- data/MAINTAINERS +0 -38
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f5bce1d2ed8b22724e3067c5f092e296fa0f6ae8
|
4
|
+
data.tar.gz: 2a9c093baf6dc1e71e9714ba7a7684cd34b59d8a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 473f1ae01580fde625a34aff6bbaec553b70a3a2e2efd922235521b6c1f746b4c814d022c944927df0af32049cb9a2ae16aa03a75dbb3c789d4c49c7685c2a67
|
7
|
+
data.tar.gz: 6a64a29bd78c39866909b438c4266f3707edd66de2445cd448484cb561b9afe2b7ce22308057577186044f93b2bef87cf4476f9a9f7fbe0922c9911833ffcb9a
|
data/CODEOWNERS
ADDED
data/PULL_REQUEST_TEMPLATE.md
CHANGED
@@ -1,10 +1,6 @@
|
|
1
1
|
Please delete any headings that don't apply to this Pull Request (PR).
|
2
2
|
|
3
3
|
#### What's this PR do?
|
4
|
-
#### Who would you like to review this PR?
|
5
|
-
|
6
|
-
@puppetlabs/integration, @puppetlabs/beaker (repo owners)
|
7
|
-
|
8
4
|
#### Should any of this be tested outside the normal PR CI cycle?
|
9
5
|
#### Any background context you want to provide?
|
10
6
|
#### Questions for reviewers?
|
@@ -223,6 +223,7 @@ module Beaker
|
|
223
223
|
# @option opts [String] :pe_ver Default PE version to install or upgrade to
|
224
224
|
# (Otherwise uses individual hosts pe_ver)
|
225
225
|
# @option opts [Boolean] :pe_debug (false) Should we run the installer in debug mode?
|
226
|
+
# @option opts [Boolean] :interactive (false) Should we run the installer in interactive mode?
|
226
227
|
# @example
|
227
228
|
# on host, "#{installer_cmd(host, opts)} -a #{host['working_dir']}/answers"
|
228
229
|
# @api private
|
@@ -241,7 +242,7 @@ module Beaker
|
|
241
242
|
else
|
242
243
|
pe_debug = host[:pe_debug] || opts[:pe_debug] ? ' -D' : ''
|
243
244
|
pe_cmd = "cd #{host['working_dir']}/#{host['dist']} && ./#{host['pe_installer']}#{pe_debug}"
|
244
|
-
if ! version_is_less(host['pe_ver'], '2016.2.1')
|
245
|
+
if ! version_is_less(host['pe_ver'], '2016.2.1') && ! opts[:interactive]
|
245
246
|
# -y option sets "assume yes" mode where yes or whatever default will be assumed
|
246
247
|
pe_cmd += " -y"
|
247
248
|
end
|
data/lib/beaker-pe/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: beaker-pe
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.1.
|
4
|
+
version: 2.1.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Puppetlabs
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-
|
11
|
+
date: 2019-08-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rspec
|
@@ -237,10 +237,10 @@ files:
|
|
237
237
|
- ".gitignore"
|
238
238
|
- ".rspec"
|
239
239
|
- ".simplecov"
|
240
|
+
- CODEOWNERS
|
240
241
|
- Gemfile
|
241
242
|
- HISTORY.md
|
242
243
|
- LICENSE
|
243
|
-
- MAINTAINERS
|
244
244
|
- PULL_REQUEST_TEMPLATE.md
|
245
245
|
- README.md
|
246
246
|
- Rakefile
|
data/MAINTAINERS
DELETED
@@ -1,38 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"version": 1,
|
3
|
-
"file_format": "This MAINTAINERS file format is described at http://pup.pt/maintainers",
|
4
|
-
"issues": "https://tickets.puppet.com/browse/PE",
|
5
|
-
"internal_list": "https://groups.google.com/a/puppet.com/forum/?hl=en#!forum/discuss-organizational-scale",
|
6
|
-
"people": [
|
7
|
-
{
|
8
|
-
"github": "kevpl",
|
9
|
-
"email": "ki@puppet.com",
|
10
|
-
"name": "Kevin Imber"
|
11
|
-
},
|
12
|
-
{
|
13
|
-
"github": "tvpartytonight",
|
14
|
-
"email": "tv@puppet.com",
|
15
|
-
"name": "Tony Vu"
|
16
|
-
},
|
17
|
-
{
|
18
|
-
"github": "jpartlow",
|
19
|
-
"email": "joshua.partlow@puppet.com",
|
20
|
-
"name": "Josh Partlow"
|
21
|
-
},
|
22
|
-
{
|
23
|
-
"github": "demophoon",
|
24
|
-
"email": "britt@puppet.com",
|
25
|
-
"name": "Britt Gresham"
|
26
|
-
},
|
27
|
-
{
|
28
|
-
"github": "highb",
|
29
|
-
"email": "brandon.high@puppet.com",
|
30
|
-
"name": "Brandon High"
|
31
|
-
},
|
32
|
-
{
|
33
|
-
"github": "ericwilliamson",
|
34
|
-
"email": "eric.williamson@puppet.com",
|
35
|
-
"name": "Eric Williamson"
|
36
|
-
}
|
37
|
-
]
|
38
|
-
}
|