Skip to content

Commit

Permalink
Don't wrap yaml lines for confs (#160)
Browse files Browse the repository at this point in the history
* Don't wrap yaml lines for confs

* Apply suggestions from code review

---------

Co-authored-by: treydock <[email protected]>
  • Loading branch information
mattmix and treydock authored Sep 6, 2024
1 parent b0131b2 commit 94dbd35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion manifests/conf.pp
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
if $data {
$_content = join([
'# File managed by Puppet - DO NOT EDIT',
to_yaml($data),
to_yaml($data, { 'line_width' => -1 }),
'',
], "\n")
} elsif $content_template {
Expand Down

0 comments on commit 94dbd35

Please sign in to comment.