> node A:
>
> @@file{'/tmp/foo': tag => $fqdnofothernode }
>
> other node:
>
> File<<| tag == $fqdn |>>
>
> cheers pete
for me this fails with:

err: Could not retrieve catalog: Puppet::Parser::Compiler failed with 
error NameError: uninitialized constant ParamValue on node xxxxx

class mybackup::server  inherits  mybackup {

                File <<| tag == $fqdn |>>
}

class mybackup::client inherits  mybackup {

        @@file{"/tmp/$fqdn":    content =>      "$fqdn",        tag     
=>      'backup01.myserver.net';}

}


i include the mybackup::client on one node, mybackup::server on the node 
'backup01.myserver.net'  and it fails with:

err: Could not retrieve catalog: Puppet::Parser::Compiler failed with 
error NameError: uninitialized constant ParamValue on node xxxxx

Even with direct config in the nodes:


node 'main-1' {

@@file{"/tmp/$fqdn":    content =>      "$fqdn",        tag     =>      
'backup01';}

}


node 'backup01' {

   File <<| tag == 'backup01' |>>

}


regards,
Jean.

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