Error:

Must pass a parameter or all necessary values at /etc/puppet/ 
>

Is because when using Ruby DSL, assumed variables $name and $title are not 
passed to Puppet resource. 
For example, fix this:

     create_resource :'server::vhost', 'example',
          :ensure => 'present',
          etc...

To this 

     create_resource :'server::vhost',
          :name => 'example',
          :ensure => 'present',
          etc...

-- 
You received this message because you are subscribed to the Google Groups 
"Puppet Users" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/puppet-users/-/1T9MWeV0AUkJ.
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