puppet_webhook 1.6.0 → 1.6.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +7 -0
- data/bin/puppet_webhook +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a033807d653ea6ca0e2e168285cedaa3a88b6e7e
|
4
|
+
data.tar.gz: a61cef2d602fe46e73628917ac1f55b6339c2211
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ae8031b56b893d520f9264b98007609a3b18121c8ee74d795836e9d83979b5904c920dacb9d78ea3fcc1949fb7cca4dec9e3c6e991a97a03e07fa728464ee520
|
7
|
+
data.tar.gz: d3d0924a67612ab7231f31eca989d06981208b5a66ee7feeb7f2cc2756c46bb884a45d7aa12731c0e80c88731ee8cfac6ecdbfd13b7df63789c3a030a3673ffc
|
data/CHANGELOG.md
CHANGED
@@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file.
|
|
4
4
|
Each new release typically also includes the latest modulesync defaults.
|
5
5
|
These should not affect the functionality of the module.
|
6
6
|
|
7
|
+
## [v1.6.1](https://github.com/voxpupuli/puppet_webhook/tree/v1.6.1) (2018-12-23)
|
8
|
+
[Full Changelog](https://github.com/voxpupuli/puppet_webhook/compare/v1.6.0...v1.6.1)
|
9
|
+
|
10
|
+
**Fixed bugs:**
|
11
|
+
|
12
|
+
- Change webrick log constants to strings to match conf file [\#80](https://github.com/voxpupuli/puppet_webhook/pull/80) ([dhollinger](https://github.com/dhollinger))
|
13
|
+
|
7
14
|
## [v1.6.0](https://github.com/voxpupuli/puppet_webhook/tree/v1.6.0) (2018-12-19)
|
8
15
|
[Full Changelog](https://github.com/voxpupuli/puppet_webhook/compare/v1.5.2...v1.6.0)
|
9
16
|
|
data/bin/puppet_webhook
CHANGED
@@ -10,7 +10,7 @@ options = {
|
|
10
10
|
host: '0.0.0.0',
|
11
11
|
port: '8088',
|
12
12
|
logfile: $stderr,
|
13
|
-
loglevel:
|
13
|
+
loglevel: 'WARN',
|
14
14
|
server_type: WEBrick::SimpleServer
|
15
15
|
}
|
16
16
|
|
@@ -23,7 +23,7 @@ optparse = OptionParser.new do |opts| # rubocop:disable Metrics/BlockLength
|
|
23
23
|
'
|
24
24
|
|
25
25
|
opts.on('-d', '--debug', 'Display or log messages.') do
|
26
|
-
options[:loglevel] =
|
26
|
+
options[:loglevel] = 'DEBUG'
|
27
27
|
end
|
28
28
|
|
29
29
|
opts.on('-l [LOGFILE]', '--logfile [LOGFILE]',
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: puppet_webhook
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.6.
|
4
|
+
version: 1.6.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Vox Pupuli
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-12-
|
11
|
+
date: 2018-12-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: json
|