Skip to content

Commit

Permalink
Avoid using stdlib::merge() function (#194)
Browse files Browse the repository at this point in the history
 - use native Puppet code instead of requiring stdlib >= 9.0
 - ensure Puppet 8 compatibility
  • Loading branch information
deric committed Jun 24, 2024
1 parent b23a446 commit 55fa295
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion manifests/params.pp
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
fail("Module '${module_name}' is not supported on OS: '${os_name}', family: '${os_family}'")
}
}
$_params = merge($_defaults, $_os_overrides)
$_params = $_defaults + $_os_overrides

# meta options
$ensure = present
Expand Down

0 comments on commit 55fa295

Please sign in to comment.