puppetmodule
puppetmodule copied to clipboard
Set correct perms for a couple of puppet directories
I set default properties for the file resource in my site manifest, as follows:
File{
owner => 'root',
group => 'root',
mode => '0644',
}
I noticed that a couple of the file resources in your module don't file mode and so get set to 0755 instead of the 0750 that they get installed as.
This fixes the issue.
Alternatively, it might be worth considering not managing those directories as they are both created by the install process (for the RPM, at least).
I suggest we remove these all together as I remove these for issue #67
Works for me.