Well that's weird and mildly confusing. The class is opsys::centos but we're really including opsys::CentOS. Nice.
because puppet can't have any classes started with capitalized letters (global resource identifier clash) and anything else behind is anyway downcased (class tEST == class test), include downcases automatically for you:
$ cat foo.pp class test { notice("yupiiii!") } include Test $ puppet foo.pp notice: Scope(Class[test]): yupiiii! cheers pete -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To post to this group, send email to puppet-us...@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.