Your syntax is fine. The way you are putting the bits together is very messed up.
It seems to me that you need some basic understanding of Puppet and how it works and how to use it. Try these links: http://finninday.net/wiki/index.php/Zero_to_puppet_in_one_day http://docs.puppetlabs.com/learning/ “Sometimes I think the surest sign that intelligent life exists elsewhere in the universe is that none of it has tried to contact us.” Bill Waterson (Calvin & Hobbes) ----- Original Message ----- From: "RedHotChiliPepper" <sharrukinjoseph...@gmail.com> To: puppet-users@googlegroups.com Sent: Monday, August 26, 2013 10:57:06 AM Subject: Re: [Puppet Users] Unable to declare a parameterized class Hi Ygor - Can you ever declare a class with no parameters using the following syntax? class { 'morefangs::one' : } I am new to puppet, are class declarations not allowed in site.pp? I renamed site.pp to test.pp but when I tried to apply the test.pp manifest I got the same exact error. Can you instruct me on how to invoke these classes outside of the class file one.pp and two.pp? Thanks for your assistance. On Friday, August 23, 2013 8:32:57 PM UTC-4, Ygor wrote: Two problems: One: http://docs.puppetlabs.com/guides/parameterized_classes.html Your classes have no parameters. Example from the link: class webserver( $vhost_dir, $packages ) { package { $packages: ensure => present } file { 'vhost_dir': path => $vhost_dir, ensure => directory, mode => '0750', owner => 'www-data', group => 'root', } } $vhost_dir and $packages are the parameters Two: http://docs.puppetlabs.com/puppet/3/reference/lang_classes.html "Classes are named blocks of Puppet code, which are stored in modules for later use and are not applied until they are invoked by name.” You are declaring your classes in your site manifest. I hope this helps. On Aug 23, 2013, at 6:09 PM, RedHotChiliPepper wrote: I have the following manifests #/etc/puppet/modules/morefangs/manifests/init.pp class morefangs {} #/etc/puppet/modules/morefangs/manifests/one.pp class one { file {'/tmp/one': ensure => present, content => 'moot', } } #/etc/puppet/modules/morefangs/manifests/two.pp class two { file {'/tmp/two': ensure => present, content => 'moot', } } #/etc/puppet/modules/morefangs/manifests/site.pp include one include two When I run puppet apply /etc/puppet/modules/morefangs/manifests/site.pp I get the following error Could not find class one for ec2.compute-1.amazonaws.com at /etc/puppet/modules/morefangs/manifests/site.pp:3 on node ec2.compute-1.amazonaws.com How can I declare this class using the parameterized class syntax and the include syntax? -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-users...@googlegroups.com . To post to this group, send email to puppet...@googlegroups.com . Visit this group at http://groups.google.com/group/puppet-users . For more options, visit https://groups.google.com/groups/opt_out . -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-users+unsubscr...@googlegroups.com. To post to this group, send email to puppet-users@googlegroups.com. Visit this group at http://groups.google.com/group/puppet-users . For more options, visit https://groups.google.com/groups/opt_out . -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-users+unsubscr...@googlegroups.com. To post to this group, send email to puppet-users@googlegroups.com. Visit this group at http://groups.google.com/group/puppet-users. For more options, visit https://groups.google.com/groups/opt_out.