file { 'zone_dir' :
|
ensure => 'directory',
|
path => '/tmp/test',
|
mode => 'u=rwx,g=rw,a=r',
|
}
|
When Puppet creates a new directory as mentioned above, puppet sets the Sticky-Bit although it is not set. If the directory exist, Puppet doesn't
Workaround is:
mode => 'u=rwx,g=rw,a=r-t',
|
|