Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions manifests/limits.pp
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,9 @@
}

ensure_resource('concat::fragment', "top_${target_file}", {
target => $target_file,
content => "# Managed by Puppet\n\n#<domain> <type> <item> <value>\n",
order => '01',
target => $target_file,

Check warning on line 69 in manifests/limits.pp

View workflow job for this annotation

GitHub Actions / Puppet / Static validations

indent should be 6 chars and is 4 (check: strict_indent)
content => "# Managed by Puppet\n\n#<domain> <type> <item> <value>\n",

Check warning on line 70 in manifests/limits.pp

View workflow job for this annotation

GitHub Actions / Puppet / Static validations

indent should be 6 chars and is 4 (check: strict_indent)
order => '01',

Check warning on line 71 in manifests/limits.pp

View workflow job for this annotation

GitHub Actions / Puppet / Static validations

indent should be 6 chars and is 4 (check: strict_indent)
})

concat::fragment { "${real_user}_${real_type}":
Expand All @@ -77,8 +77,8 @@
}

ensure_resource('concat', $target_file, {
ensure => $ensure,
owner => 'root',
group => 'root',
ensure => $ensure,

Check warning on line 80 in manifests/limits.pp

View workflow job for this annotation

GitHub Actions / Puppet / Static validations

indent should be 6 chars and is 4 (check: strict_indent)
owner => 'root',

Check warning on line 81 in manifests/limits.pp

View workflow job for this annotation

GitHub Actions / Puppet / Static validations

indent should be 6 chars and is 4 (check: strict_indent)
group => 'root',

Check warning on line 82 in manifests/limits.pp

View workflow job for this annotation

GitHub Actions / Puppet / Static validations

indent should be 6 chars and is 4 (check: strict_indent)
})
}
Loading