On Sun, Aug 26, 2012 at 6:22 PM, Shantanu <knowshant...@gmail.com> wrote:
> Thanks for the reply Ryan. I haven't made any changes after cloning
> this module (commit 66d5ce9ae). Following are contents of dav_fs
> manifest file:
>
> $ cat /etc/puppet/modules/apache/manifests/mod/dav_fs.pp
> class apache::mod::dav_fs {
>   Class[apache::mod::dav] -> Class[apache::mod::dav_fs]
>   apache::mod { 'dav_fs': }
> }

Hi Shantanu,

I did manage to replicate this. I apologize for the inconvenience!
While this syntax works fine Puppet 2.7, we seem to have missed that
it breaks in 2.6. Thankfully, it's a quick fix. Just enclose the class
names in single quotes. We'll get this resolved for future users of
the apache module.

To fix, take this line:
Class[apache::mod::dav] -> Class[apache::mod::dav_fs]

Replace it with this:
Class['apache::mod::dav'] -> Class['apache::mod::dav_fs']

Again, I'm sorry for the inconvenience! Thanks for letting us know about this.

-- 
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