bolt 2.24.0 → 2.24.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 +4 -4
- data/lib/bolt/config.rb +8 -1
- data/lib/bolt/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4a424969e4d64b199e77f75c0d67f2f8d668124dea01c8feaec98f7c8d6acd8a
|
|
4
|
+
data.tar.gz: c877c94c963b4dcca169b8bad3cf85fe547c1ca9a6050c9554fcc0685cb324b5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7720901d8ad877de79b073b3d2d845e78845366bd3e556b4e9c7f4c3be7907e4f9bbf95de06a2583fa2b8d773494855bc3ff1d03fbd3a05217afa969caa1b703
|
|
7
|
+
data.tar.gz: f9f4ffb0512f5be6962497bec3f64f69e58f79862fb0337c7d7d67d8964a124afc01ea99cec2f39c12952943e06006d8bc99bb2651e592b909f599791d2b0b4d
|
data/lib/bolt/config.rb
CHANGED
|
@@ -204,7 +204,7 @@ module Bolt
|
|
|
204
204
|
'compile-concurrency' => Etc.nprocessors,
|
|
205
205
|
'concurrency' => default_concurrency,
|
|
206
206
|
'format' => 'human',
|
|
207
|
-
'log' => { 'console' => {}
|
|
207
|
+
'log' => { 'console' => {} },
|
|
208
208
|
'plugin_hooks' => {},
|
|
209
209
|
'plugins' => {},
|
|
210
210
|
'puppetdb' => {},
|
|
@@ -213,6 +213,13 @@ module Bolt
|
|
|
213
213
|
'transport' => 'ssh'
|
|
214
214
|
}
|
|
215
215
|
|
|
216
|
+
if project.path.directory?
|
|
217
|
+
default_data['log']['bolt-debug.log'] = {
|
|
218
|
+
'level' => 'debug',
|
|
219
|
+
'append' => false
|
|
220
|
+
}
|
|
221
|
+
end
|
|
222
|
+
|
|
216
223
|
loaded_data = config_data.each_with_object([]) do |data, acc|
|
|
217
224
|
@warnings.concat(data[:warnings]) if data[:warnings].any?
|
|
218
225
|
@deprecations.concat(data[:deprecations]) if data[:deprecations].any?
|
data/lib/bolt/version.rb
CHANGED