beaker-pe 0.1.0 → 0.1.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 CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- ODFiZWE3YWQ1Nzc1YzcyMDhjOTA2MmZjNmRjZGIwYzRmYWIzMWMxZg==
4
+ NDdmODU1MjE4MDIwZjBkYjUyMWZkYTU3OWI3MzU0ZjFkMmQyZGRkMw==
5
5
  data.tar.gz: !binary |-
6
- ZjJlY2U4ZGM5OTg0OWYxY2VlMTcwZmI3NDRmNmUxM2E4ODJiZTQzMw==
6
+ NzA3N2NiMzAxNjdlODA1ZmIwZTg1MThmZmFmMDFjZmViNmZkMDJjMw==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- ZWEzZDc5NGE0NjE5YjY3ZDlkZGQyYzU3ZTcwNGU4OWE0NGJhYzc0YzAzNTQz
10
- M2I5ODdlZDAyZDlkNzY0YWZjMGFmZmYxNzc4Y2YzNjllODUxODkyYTk5NGQw
11
- OGU2NGY2MmRhMjk2OWZmYzAzN2VhNjUxZjI3NTAyYWQ2NTRmZmQ=
9
+ ZDc1ZWVjMDg0MWJjYTBkZTNkM2Y3ODIzMTU3NTg5ZmMyMzc1OTRmOTVkMzMx
10
+ NWE4ZTc5MTM5YjM1NTljMTZhMmM3ZmJlMTExNWViMDhkNTdiZGUwZTQwNjA2
11
+ ZTZiYmIzNjJhZmRhM2I4ZWQzYmIyNDhiZjkzOTgzYTIwMzc2Njk=
12
12
  data.tar.gz: !binary |-
13
- YzZhYWMzZWE3M2U4M2I2NjFiNmFiY2FmYmRhN2I4ODM3MGYxNjVhNTQ0NjFj
14
- Y2Y5MjAxZGNkOWM4Zjc2NTAwOTQxZWJmMGVhOTE1N2I3ZWExODUyYTNmMGI0
15
- ODgzYmRhZTc5NzYyNjU4ZGI4MzM0NTJhODUzNDQ3OTdjYTJmNGI=
13
+ N2EyZTkwYTc4MTYxZWZkMDUyZjI4Zjg5ODQxYzgxZTljZjU2Y2VhZWFlZjUw
14
+ MjZiMDFiMDRiMWE2ZjE5ODIwMzYyMzM5ODUxY2UyZDQ3MDEyZTVhYmUxYjFh
15
+ MDQ0OGVmMzg2NWQxODk2ZWM4ZTI1ZmQ4MzkyYjA5ODVjMWFiMDU=
data/HISTORY.md CHANGED
@@ -1,8 +1,33 @@
1
1
  # default - History
2
2
  ## Tags
3
- * [LATEST - 29 Feb, 2016 (ed4ae03d)](#LATEST)
3
+ * [LATEST - 4 Apr, 2016 (6ccb5a59)](#LATEST)
4
+ * [0.1.0 - 29 Feb, 2016 (4fc88d8c)](#0.1.0)
4
5
 
5
6
  ## Details
6
- ### <a name = "LATEST">LATEST - 29 Feb, 2016 (ed4ae03d)
7
+ ### <a name = "LATEST">LATEST - 4 Apr, 2016 (6ccb5a59)
8
+
9
+ * (GEM) update beaker-pe version to 0.1.1 (6ccb5a59)
10
+
11
+ * Merge pull request #2 from demophoon/fix/master/pe-14934 (4e0b668e)
12
+
13
+
14
+ ```
15
+ Merge pull request #2 from demophoon/fix/master/pe-14934
16
+
17
+ (PE-14934) Test if puppetdb is up when running puppet agent on pdb node
18
+ ```
19
+ * (PE-14934) Test if puppetdb is up when running puppet agent on pdb node (882ca94f)
20
+
21
+
22
+ ```
23
+ (PE-14934) Test if puppetdb is up when running puppet agent on pdb node
24
+
25
+ Before this commit we were running into an issue where puppetdb would
26
+ sometimes not be up and running after puppet agent restarted the
27
+ service. This commit waits for the puppetdb service to be up after
28
+ running puppet agent on the database node so that the next agent run
29
+ doesn't fail.
30
+ ```
31
+ ### <a name = "0.1.0">0.1.0 - 29 Feb, 2016 (4fc88d8c)
7
32
 
8
33
  * Initial release.
@@ -473,7 +473,15 @@ module Beaker
473
473
 
474
474
  # Now that all hosts are in the dashbaord, run puppet one more
475
475
  # time to configure mcollective
476
- on install_hosts, puppet_agent('-t'), :acceptable_exit_codes => [0,2]
476
+ install_hosts.each do |host|
477
+ on host, puppet_agent('-t'), :acceptable_exit_codes => [0,2]
478
+ # To work around PE-14318 if we just ran puppet agent on the
479
+ # database node we will need to wait until puppetdb is up and
480
+ # running before continuing
481
+ if host == database
482
+ sleep_until_puppetdb_started(database)
483
+ end
484
+ end
477
485
  end
478
486
  end
479
487
 
@@ -3,7 +3,7 @@ module Beaker
3
3
  module PE
4
4
 
5
5
  module Version
6
- STRING = '0.1.0'
6
+ STRING = '0.1.1'
7
7
  end
8
8
 
9
9
  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.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Puppetlabs
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-02-29 00:00:00.000000000 Z
11
+ date: 2016-04-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rspec