Skip to content

Commit 49f277a

Browse files
committed
Preparing new release
1 parent 541af3b commit 49f277a

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# CHANGELOG
22

3+
## 3.10.2
4+
5+
- Fixed options param in tp::conf where use_v4 is false
6+
37
## 3.10.1
48

59
- Changed CI containers used

manifests/conf.pp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -445,7 +445,7 @@
445445
$settings = $tp_settings + $settings_hash
446446

447447
$tp_options = tp_lookup($app,"options::${base_file}",$data_module,'merge')
448-
$options = $tp_options + $options_hash
448+
$options = deep_merge($tp_options,$options_hash,$my_options,)
449449

450450
if $file and $file != '' {
451451
$prefix = $scope ? {
@@ -489,7 +489,7 @@
489489

490490
# If user doesn't provide a $content, $template or $epp but provides $options_hash we check
491491
# if on tinydata is set config_file_format
492-
if $content_params =~ Undef and $settings[config_file_format] and $options_hash != {} {
492+
if $content_params =~ Undef and $settings[config_file_format] and $options != {} {
493493
$manage_content = $settings[config_file_format] ? {
494494
'yaml' => to_yaml($options_hash),
495495
'json' => to_json($options_hash),

metadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "example42-tp",
3-
"version": "3.10.1",
3+
"version": "3.10.2",
44
"author": "example42",
55
"summary": "Tiny Puppet",
66
"license": "Apache-2.0",

0 commit comments

Comments
 (0)