Skip to content
This repository has been archived by the owner on May 5, 2023. It is now read-only.

Commit

Permalink
Set owner, group, mode explicitly so things work even with umask 027.
Browse files Browse the repository at this point in the history
  • Loading branch information
Stefan Bethke committed Jul 27, 2017
1 parent 253ce75 commit d9664ba
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion manifests/file.pp
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,10 @@

if ! defined(File[$staging_dir]) {
file { $staging_dir:
ensure=>directory,
ensure => 'directory',
owner => $staging::owner,
group => $staging::group,
mode => $staging::mode,
}
}
}
Expand Down

0 comments on commit d9664ba

Please sign in to comment.