master_manipulator 1.2.7 → 2.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- NzVhNzRiNjAxNDU5YmJlMzZhZTM3YWU3Zjg5MzQyZjc3ZmE3ZGM1ZA==
4
+ YTc3OGRjYjUyYTQ1MDNjYmE3NzM3NTFmMzc0YTMwMDFiY2JlY2EyOA==
5
5
  data.tar.gz: !binary |-
6
- NGEwYjc1YTIxN2RkZWE4M2UwNjJlZTQ2MmRlOTQ2ODE3N2M5MjE1Zg==
6
+ Y2U4NTA0MWRiODk3ODk0N2I0ODdlZmUyMjg1YjhhZTBiM2U2MzhkMg==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- Y2FiZmI2MWI5MzdkMTBhNzZhMTYyNTM4ODQzNDMwNGEzZmU2N2ZiMTAwZDM3
10
- ODE2ZTkxYmEyYjhjOGM3MDA3YzcwNDhiMGIxMDRmYWNmOTFhYWY2MmE1YmEz
11
- MGNiMzU4YTFiMTYwNjc2MzliZTY4OGY2Yjg0MDJmZTc1MjRhMDM=
9
+ NzdhNTBmNTVhZDRlZmI3MjZjNTg4ZWYwMGFjMDBkYWJkNDM4YzE1NTY2N2Jl
10
+ ODE4OTIyNjg4ZWExYTIwYTUyZTg2MGI2MTNjMmEwNmQ1ZGE3ZDlhY2VkYTNj
11
+ ODczZGM3YTA3NmFiNmViZmVkNTE2MDhjNDAyY2JhN2E4MjQyZDc=
12
12
  data.tar.gz: !binary |-
13
- YWY0OGNmMzBmZDZmZDBjMzUzYjMzNzc1YTcxZGRlMjkzN2M1OTIzYmI3N2Nh
14
- OTNlYzdmMmQ3ZjNhNTNhYTZjY2JmZDkwYmUxNzIyYzg5ODY1Y2RhZjhmMDA3
15
- ODU1MzYxMDEyMTcxOTk0ZDFlNjQwMzI4NzdmMzUzMzQ5MzU5NGY=
13
+ Y2M1Njg0NGE2MDM5ZDg2NjI1YTJmNGFiY2UzY2M0ZTNhZjUyOWRlOGMyZDll
14
+ MzU0M2RkMDI3M2ZmYmViNjBhODk4MjRkMWU2ZjEyZjEyNGI2ZjFhMTYyOTVk
15
+ ZjJlMDk5ZTRkZjJmYWFiNTVjMmI2ODVkNzliOGM3ODFiYzU0NTI=
data/HISTORY.md CHANGED
@@ -1,6 +1,7 @@
1
1
  # worker - History
2
2
  ## Tags
3
- * [LATEST - 8 Mar, 2017 (325436d0)](#LATEST)
3
+ * [LATEST - 15 Mar, 2017 (98f7b9fe)](#LATEST)
4
+ * [1.2.7 - 8 Mar, 2017 (cb51b95b)](#1.2.7)
4
5
  * [1.2.6 - 10 Jan, 2017 (866a03cb)](#1.2.6)
5
6
  * [1.2.4 - 27 Sep, 2016 (48017488)](#1.2.4)
6
7
  * [1.2.3 - 20 Nov, 2015 (f31e884e)](#1.2.3)
@@ -14,7 +15,25 @@
14
15
  * [1.0.0 - 6 May, 2015 (8ae50d90)](#1.0.0)
15
16
 
16
17
  ## Details
17
- ### <a name = "LATEST">LATEST - 8 Mar, 2017 (325436d0)
18
+ ### <a name = "LATEST">LATEST - 15 Mar, 2017 (98f7b9fe)
19
+
20
+ * (GEM) update master_manipulator version to 2.0.0 (98f7b9fe)
21
+
22
+ * Merge pull request #28 from kurtwall/add-reload-server (8d413112)
23
+
24
+
25
+ ```
26
+ Merge pull request #28 from kurtwall/add-reload-server
27
+
28
+ (QA-2367) Add a .reload_puppet_server method and spec tests
29
+ ```
30
+ * Add method signature and short description to API quick reference (92aab7dc)
31
+
32
+ * Add a .reload_puppet_server method and spec tests (dc24b159)
33
+
34
+ ### <a name = "1.2.7">1.2.7 - 8 Mar, 2017 (cb51b95b)
35
+
36
+ * (HISTORY) update master_manipulator history for gem release 1.2.7 (cb51b95b)
18
37
 
19
38
  * (GEM) update master_manipulator version to 1.2.7 (325436d0)
20
39
 
data/Rakefile CHANGED
@@ -5,6 +5,6 @@ task :default => :test
5
5
 
6
6
  desc "Run spec tests"
7
7
  RSpec::Core::RakeTask.new(:test) do |t|
8
- t.rspec_opts = ['--color']
8
+ t.rspec_opts = ['--color', '--format d']
9
9
  t.pattern = 'spec/'
10
10
  end
@@ -3,6 +3,26 @@ require 'json'
3
3
  module MasterManipulator
4
4
  module Service
5
5
 
6
+ # Reload puppetserver, causing it to reread its config without
7
+ # restarting the JVM. use this instead of restart_puppet_server
8
+ # unless you absolutely have to stop and restart the server because
9
+ # JVM restarts are very expensive. This implementation relies on
10
+ # puppetserver's "reload" subcommand, which handles all the waiting
11
+ # for services to refresh. Older code using a forced HUP on the
12
+ # server process should be replaced with this.
13
+ # @param [Beaker::Host] master_host The host to manipulate.
14
+ # @param [Hash] opts Optional options hash containing options
15
+ # @return nil
16
+ # @example Restart the puppetserver process on a PE or FOSS master
17
+ # restart_puppet_server(master)
18
+ def reload_puppet_server(master_host, opts = {})
19
+ # 2015.x (Everett) and newer
20
+ rc = on(master_host, "puppetserver reload", :accept_all_exit_codes => true)
21
+ if rc.exit_code != 0
22
+ raise "'puppetserver reload' failed, returned: #{rc.exit_code}"
23
+ end
24
+ end
25
+
6
26
  # Restart the puppet server and wait for it to come back up or raise
7
27
  # an error if the wait times out
8
28
  # @param [Beaker::Host] master_host The host to manipulate.
@@ -1,5 +1,5 @@
1
1
  module MasterManipulator
2
2
  module Version
3
- STRING = '1.2.7'
3
+ STRING = '2.0.0'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: master_manipulator
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.7
4
+ version: 2.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Puppet, Inc.
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-03-08 00:00:00.000000000 Z
11
+ date: 2017-03-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler