Skip to content

Commit

Permalink
test @kenyon identation suggestion
Browse files Browse the repository at this point in the history
  • Loading branch information
trefzer committed Nov 13, 2024
1 parent 7644f32 commit 837f96d
Showing 1 changed file with 12 additions and 9 deletions.
21 changes: 12 additions & 9 deletions manifests/networkd.pp
Original file line number Diff line number Diff line change
Expand Up @@ -82,27 +82,30 @@
systemd::network { "${_filename}.link":
path => $path,
content => epp('systemd/network.epp', {
fname => "${_filename}.link",
config => deep_merge(pick($link_profiles[$interface_name], {}), $interface['link']),
}),
fname => "${_filename}.link",

Check warning on line 85 in manifests/networkd.pp

View workflow job for this annotation

GitHub Actions / Puppet / Static validations

indent should be 12 chars and is 10 (check: strict_indent)
config => deep_merge(pick($link_profiles[$interface_name], {}), $interface['link']),

Check warning on line 86 in manifests/networkd.pp

View workflow job for this annotation

GitHub Actions / Puppet / Static validations

indent should be 12 chars and is 10 (check: strict_indent)
}
),
}
}
if 'netdev' in $interface.keys() {
systemd::network { "${_filename}.netdev":
path => $path,
content => epp('systemd/network.epp', {
fname => "${_filename}.netdev",
config => deep_merge(pick($netdev_profiles[$interface_name], {}), $interface['netdev']),
}),
fname => "${_filename}.netdev",

Check warning on line 95 in manifests/networkd.pp

View workflow job for this annotation

GitHub Actions / Puppet / Static validations

indent should be 12 chars and is 10 (check: strict_indent)
config => deep_merge(pick($netdev_profiles[$interface_name], {}), $interface['netdev']),

Check warning on line 96 in manifests/networkd.pp

View workflow job for this annotation

GitHub Actions / Puppet / Static validations

indent should be 12 chars and is 10 (check: strict_indent)
}
),
}
}
if 'network' in $interface.keys() {
systemd::network { "${_filename}.network":
path => $path,
content => epp('systemd/network.epp', {
fname => "${_filename}.network",
config => deep_merge(pick($network_profiles[$interface_name], {}), $interface['network']),
}),
fname => "${_filename}.network",

Check warning on line 105 in manifests/networkd.pp

View workflow job for this annotation

GitHub Actions / Puppet / Static validations

indent should be 12 chars and is 10 (check: strict_indent)
config => deep_merge(pick($network_profiles[$interface_name], {}), $interface['network']),

Check warning on line 106 in manifests/networkd.pp

View workflow job for this annotation

GitHub Actions / Puppet / Static validations

indent should be 12 chars and is 10 (check: strict_indent)
}
),
}
}
}
Expand Down

0 comments on commit 837f96d

Please sign in to comment.