On 2012-25-10 22:33, danielt wrote:

When I call the define from within my apache2 class with this:

helper::files{$files:
     owner     => root,
     group     => root,
     mode      => 644,
     path      => "puppet:///files/apache2/",
     ensure    => present,
     requires  => File[$folders]
   }

Irrespective of other issues, you probably want to use the octal 0644 for mode. You currently have a decimal value 644 that corresponds to 01204 (octal) which is a quite different mode.

- henrik


--
You received this message because you are subscribed to the Google Groups "Puppet 
Users" group.
To post to this group, send email to puppet-users@googlegroups.com.
To unsubscribe from this group, send email to 
puppet-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/puppet-users?hl=en.

Reply via email to