beaker-pe 0.12.1 → 0.12.2
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 +3 -3
- 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
|
+
OThjMDdhMDhhNGNkOWM0M2NmODgzMDgzNTc5ODg2MWY4OGNhNmQ2Ng==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
OGMyODliMzRiNzZlNzNjNTljMzgyYTY1Nzg0YzYyMzZiZmMyNTEzOA==
|
|
7
7
|
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
YzQwOGI3OWU0YWY3YmViMjNkOWJmOTI3YzkyZGI0OTNmMDdlMzA5Zjc2ZTEy
|
|
10
|
+
M2RhMzY1ZmI1NjA1NzE5YTZmYTc0ZjBmNzZmOWEwMmQ5ZmFmYzVhNzU3MTQy
|
|
11
|
+
MWI3OWU5OWYxOGQ3NWRjNDFiZjI2Yzg0MGU3M2ZjYzg2ZjM1MDk=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
N2RiMmNiZmFkYzBhYTE2YTkyNWVhNDg1YmIzZjVjZDMzYWJhOTc4M2FlODEy
|
|
14
|
+
ZDhiYmRmODllMDk0ZmNmZTYxM2Y0MzM0NjlhZjg1MjA2MzBhMzZjM2VhNmQ5
|
|
15
|
+
MTFkMWNlMWJlYWU2MzYxMDE0OWFlMmExYzc0YzlkOGU1MmQ4ZWI=
|
data/HISTORY.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
#
|
|
1
|
+
# worker - History
|
|
2
2
|
## Tags
|
|
3
|
-
* [LATEST -
|
|
3
|
+
* [LATEST - 15 Mar, 2017 (0dc57b15)](#LATEST)
|
|
4
4
|
|
|
5
5
|
## Details
|
|
6
|
-
### <a name = "LATEST">LATEST -
|
|
6
|
+
### <a name = "LATEST">LATEST - 15 Mar, 2017 (0dc57b15)
|
|
7
7
|
|
|
8
8
|
* Initial release.
|
data/lib/beaker-pe/version.rb
CHANGED
|
@@ -659,7 +659,6 @@ describe ClassMixedWithDSLInstallUtils do
|
|
|
659
659
|
allow( subject ).to receive( :stop_agent_on ).and_return( true )
|
|
660
660
|
allow( subject ).to receive( :sleep_until_puppetdb_started ).and_return( true )
|
|
661
661
|
allow( subject ).to receive( :max_version ).with(anything, '3.8').and_return('3.0')
|
|
662
|
-
allow( subject ).to receive( :wait_for_host_in_dashboard ).and_return( true )
|
|
663
662
|
allow( subject ).to receive( :puppet_agent ) do |arg|
|
|
664
663
|
"puppet agent #{arg}"
|
|
665
664
|
end
|
|
@@ -735,7 +734,6 @@ describe ClassMixedWithDSLInstallUtils do
|
|
|
735
734
|
expect( subject ).to_not receive( :sign_certificate_for )
|
|
736
735
|
expect( subject ).to receive( :stop_agent_on ).with( hosts[0] ).once
|
|
737
736
|
expect( subject ).to_not receive( :sleep_until_puppetdb_started )
|
|
738
|
-
expect( subject ).to_not receive( :wait_for_host_in_dashboard )
|
|
739
737
|
expect( subject ).to_not receive( :on ).with( hosts[0], /puppet agent -t/, :acceptable_exit_codes => [0,2] )
|
|
740
738
|
|
|
741
739
|
hosts.each do |host|
|
|
@@ -764,7 +762,6 @@ describe ClassMixedWithDSLInstallUtils do
|
|
|
764
762
|
allow( subject ).to receive( :stop_agent_on ).and_return( true )
|
|
765
763
|
allow( subject ).to receive( :sleep_until_puppetdb_started ).and_return( true )
|
|
766
764
|
allow( subject ).to receive( :max_version ).with(anything, '3.8').and_return('4.0')
|
|
767
|
-
allow( subject ).to receive( :wait_for_host_in_dashboard ).and_return( true )
|
|
768
765
|
allow( subject ).to receive( :puppet_agent ) do |arg|
|
|
769
766
|
"puppet agent #{arg}"
|
|
770
767
|
end
|
|
@@ -821,7 +818,6 @@ describe ClassMixedWithDSLInstallUtils do
|
|
|
821
818
|
allow( subject ).to receive( :stop_agent_on ).and_return( true )
|
|
822
819
|
allow( subject ).to receive( :sleep_until_puppetdb_started ).and_return( true )
|
|
823
820
|
allow( subject ).to receive( :max_version ).with(anything, '3.8').and_return('4.0')
|
|
824
|
-
allow( subject ).to receive( :wait_for_host_in_dashboard ).and_return( true )
|
|
825
821
|
allow( subject ).to receive( :puppet_agent ) do |arg|
|
|
826
822
|
"puppet agent #{arg}"
|
|
827
823
|
end
|
|
@@ -880,7 +876,6 @@ describe ClassMixedWithDSLInstallUtils do
|
|
|
880
876
|
allow( subject ).to receive( :stop_agent_on ).and_return( true )
|
|
881
877
|
allow( subject ).to receive( :sleep_until_puppetdb_started ).and_return( true )
|
|
882
878
|
allow( subject ).to receive( :max_version ).with(anything, '3.8').and_return('4.0')
|
|
883
|
-
allow( subject ).to receive( :wait_for_host_in_dashboard ).and_return( true )
|
|
884
879
|
allow( subject ).to receive( :puppet_agent ) do |arg|
|
|
885
880
|
"puppet agent #{arg}"
|
|
886
881
|
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: 0.12.
|
|
4
|
+
version: 0.12.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Puppetlabs
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2017-03-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rspec
|