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

Commit

Permalink
Merge pull request #144 from T-Systems-MMS/master
Browse files Browse the repository at this point in the history
Set owner, group, mode explicitly so things work even with umask 027.
  • Loading branch information
bastelfreak authored Oct 12, 2017
2 parents 433c02c + d9664ba commit ad098af
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 ad098af

Please sign in to comment.