Skip to content

Commit

Permalink
Merge pull request #20 from korylprince/maxfiles-warning
Browse files Browse the repository at this point in the history
suppress max_files warnings
  • Loading branch information
grahamgilbert authored Aug 7, 2024
2 parents 9259885 + 57d9069 commit 6389b74
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions manifests/install.pp
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,10 @@
# Make sure everything is owned by root
if $facts['munki_dir_exists'] == true {
file {'/usr/local/munki':
owner => 'root',
group => 'wheel',
recurse => true,
owner => 'root',
group => 'wheel',
recurse => true,
max_files => -1,
}
}

Expand Down

0 comments on commit 6389b74

Please sign in to comment.