beaker-pe 1.9.0 → 1.9.1
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.
- checksums.yaml +8 -8
- data/HISTORY.md +19 -2
- data/lib/beaker-pe/install/pe_utils.rb +0 -4
- data/lib/beaker-pe/version.rb +1 -1
- data/spec/beaker-pe/install/pe_utils_spec.rb +0 -5
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
YTQzZjM0YThlOTk3NDA2MDYzN2MyNzc2MThkMjJiZTU0ZDEyOWU2NQ==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
NjM5MGIzNTg5M2M5Yjg2MDIyMjI3ODkzMTkxMDMwYzA2MTZhYWUzMQ==
|
|
7
7
|
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
OTU0ZTYzM2NjMTgwYjVlZjFkN2Q5NGM5MGYxZWE1OWNlODZjODVlOTcxNjUz
|
|
10
|
+
NDFlMGI5NzBlMzkzMjFhNmZjZmI5NDk3N2UyZmQ1ZmVmMTgyMjg2OGQxOTBi
|
|
11
|
+
YTU3YWZiYzY1ODhiOWQyMzI3NDQ2OWRmNmUwNTI0MjFkMzhiMTE=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
Mjc2YjI0MjJhZDE4NzI2ZjQxYWU3MTM1YmM1MDRlMWEzMjk3ODM1YmIwNDFm
|
|
14
|
+
MTkwZWI5ZDE2MDE2ZDJiNjBhNGVhYTU1MDk3MjZhZWMyZWQwMTc2ZTJlOWQ3
|
|
15
|
+
MzhlMTM5M2YyZjEyODZhZTA3MjcwOTRlODI1NzJiYmU4NWRkNmM=
|
data/HISTORY.md
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
# worker - History
|
|
2
2
|
## Tags
|
|
3
|
-
* [LATEST -
|
|
3
|
+
* [LATEST - 22 Feb, 2017 (e2c53400)](#LATEST)
|
|
4
|
+
* [1.9.0 - 7 Feb, 2017 (efae323b)](#1.9.0)
|
|
4
5
|
* [1.8.2 - 6 Jan, 2017 (625c17e3)](#1.8.2)
|
|
5
6
|
* [1.8.1 - 30 Dec, 2016 (3cefad28)](#1.8.1)
|
|
6
7
|
* [1.8.0 - 30 Dec, 2016 (5a37fef7)](#1.8.0)
|
|
@@ -30,7 +31,23 @@
|
|
|
30
31
|
* [0.1.0 - 29 Feb, 2016 (4fc88d8c)](#0.1.0)
|
|
31
32
|
|
|
32
33
|
## Details
|
|
33
|
-
### <a name = "LATEST">LATEST -
|
|
34
|
+
### <a name = "LATEST">LATEST - 22 Feb, 2017 (e2c53400)
|
|
35
|
+
|
|
36
|
+
* (GEM) update beaker-pe version to 1.9.1 (e2c53400)
|
|
37
|
+
|
|
38
|
+
* Merge pull request #58 from kevpl/maint_stop_waiting_for_host (2a3fd63e)
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
```
|
|
42
|
+
Merge pull request #58 from kevpl/maint_stop_waiting_for_host
|
|
43
|
+
|
|
44
|
+
(MAINT) remove wait_for_host_in_dashboard call
|
|
45
|
+
```
|
|
46
|
+
* (MAINT) remove wait_for_host_in_dashboard call (f6d3ee4a)
|
|
47
|
+
|
|
48
|
+
### <a name = "1.9.0">1.9.0 - 7 Feb, 2017 (efae323b)
|
|
49
|
+
|
|
50
|
+
* (HISTORY) update beaker-pe history for gem release 1.9.0 (efae323b)
|
|
34
51
|
|
|
35
52
|
* (GEM) update beaker-pe version to 1.9.0 (d5c96d6b)
|
|
36
53
|
|
data/lib/beaker-pe/version.rb
CHANGED
|
@@ -811,7 +811,6 @@ describe ClassMixedWithDSLInstallUtils do
|
|
|
811
811
|
allow( subject ).to receive( :stop_agent_on ).and_return( true )
|
|
812
812
|
allow( subject ).to receive( :sleep_until_puppetdb_started ).and_return( true )
|
|
813
813
|
allow( subject ).to receive( :max_version ).with(anything, '3.8').and_return('3.0')
|
|
814
|
-
allow( subject ).to receive( :wait_for_host_in_dashboard ).and_return( true )
|
|
815
814
|
allow( subject ).to receive( :puppet_agent ) do |arg|
|
|
816
815
|
"puppet agent #{arg}"
|
|
817
816
|
end
|
|
@@ -887,7 +886,6 @@ describe ClassMixedWithDSLInstallUtils do
|
|
|
887
886
|
expect( subject ).to_not receive( :sign_certificate_for )
|
|
888
887
|
expect( subject ).to receive( :stop_agent_on ).with( hosts[0] ).once
|
|
889
888
|
expect( subject ).to_not receive( :sleep_until_puppetdb_started )
|
|
890
|
-
expect( subject ).to_not receive( :wait_for_host_in_dashboard )
|
|
891
889
|
expect( subject ).to_not receive( :on ).with( hosts[0], /puppet agent -t/, :acceptable_exit_codes => [0,2] )
|
|
892
890
|
|
|
893
891
|
hosts.each do |host|
|
|
@@ -916,7 +914,6 @@ describe ClassMixedWithDSLInstallUtils do
|
|
|
916
914
|
allow( subject ).to receive( :stop_agent_on ).and_return( true )
|
|
917
915
|
allow( subject ).to receive( :sleep_until_puppetdb_started ).and_return( true )
|
|
918
916
|
allow( subject ).to receive( :max_version ).with(anything, '3.8').and_return('4.0')
|
|
919
|
-
allow( subject ).to receive( :wait_for_host_in_dashboard ).and_return( true )
|
|
920
917
|
allow( subject ).to receive( :puppet_agent ) do |arg|
|
|
921
918
|
"puppet agent #{arg}"
|
|
922
919
|
end
|
|
@@ -993,7 +990,6 @@ describe ClassMixedWithDSLInstallUtils do
|
|
|
993
990
|
allow( subject ).to receive( :stop_agent_on ).and_return( true )
|
|
994
991
|
allow( subject ).to receive( :sleep_until_puppetdb_started ).and_return( true )
|
|
995
992
|
allow( subject ).to receive( :max_version ).with(anything, '3.8').and_return('4.0')
|
|
996
|
-
allow( subject ).to receive( :wait_for_host_in_dashboard ).and_return( true )
|
|
997
993
|
allow( subject ).to receive( :puppet_agent ) do |arg|
|
|
998
994
|
"puppet agent #{arg}"
|
|
999
995
|
end
|
|
@@ -1063,7 +1059,6 @@ describe ClassMixedWithDSLInstallUtils do
|
|
|
1063
1059
|
allow( subject ).to receive( :stop_agent_on ).and_return( true )
|
|
1064
1060
|
allow( subject ).to receive( :sleep_until_puppetdb_started ).and_return( true )
|
|
1065
1061
|
allow( subject ).to receive( :max_version ).with(anything, '3.8').and_return('4.0')
|
|
1066
|
-
allow( subject ).to receive( :wait_for_host_in_dashboard ).and_return( true )
|
|
1067
1062
|
allow( subject ).to receive( :puppet_agent ) do |arg|
|
|
1068
1063
|
"puppet agent #{arg}"
|
|
1069
1064
|
end
|
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: 1.9.
|
|
4
|
+
version: 1.9.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Puppetlabs
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-02-
|
|
11
|
+
date: 2017-02-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rspec
|