quixoten-puppetdb-terminus 4.2.3 → 4.2.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/puppet/util/puppetdb/config.rb +2 -0
- data/lib/puppetdb/terminus/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 47d29fa2c4dd577900585babe40236ad97c5cd42
|
4
|
+
data.tar.gz: f7a79738a3f52a0ddb2a638203b7ca82b0e9b333
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1034a5e3546adde58c1fe4103437118017d038aed0baf584d36f44ad0cd579002eadbacba0e49fe9afb4d8f3337538abbc2ec4bcc6658b898b06f5433a305935
|
7
|
+
data.tar.gz: e04af0bcc943a8704e238acea22d383e014b715f2526a6dd653e09af75a6088aa20af2831fc35d7f105f1ab618df98d1fcca6c383ea1a7a7b2fc98061125ca1d
|
@@ -39,6 +39,8 @@ module Puppet::Util::Puppetdb
|
|
39
39
|
section = $1
|
40
40
|
result[section] ||= {}
|
41
41
|
|
42
|
+
when /^\s*(server|port)\s*=.*$/
|
43
|
+
Puppet.warning("Setting '#{line.chomp}' is retired: use 'server_urls' instead. Defaulting to 'server_urls=https://puppetdb:8081'.")
|
42
44
|
when /^\s*(\w+)\s*=\s*(\S+|[\S+\s*\,\s*\S]+)\s*$/
|
43
45
|
raise "Setting '#{line}' is illegal outside of section in PuppetDB config #{config_file}:#{number}" unless section
|
44
46
|
result[section][$1] = $2
|