On 2/9/15 5:33 PM, Peter Berghold wrote:
> OK.. so I'm having a major brain fart here...
> 
> I have a class thusly:
> 
> class scripts::myscript { 
>          @file{'my neat script':
>                        path=>"/path/to/the/script",
>                        source=>"puppet:///modules/scripts/myscript.pl
> <http://myscript.pl>"
>           }
>            realize File['my neat script']
> }
> 
> 
> and in a module far far away I have the following sniglet:
> 
>            cmd { 'do my thing':
>                          command =>'/path/to/the/script',
>                           require => File['my neat script']
>             }
> 
> 
> Shouldn't the file resource be visible to the other module?  
> 
> (it's not acting that way...)
> 
> -- 
> 
> Peter L. Berghold                       salty.cowd...@gmail.com
> <mailto:salty.cowd...@gmail.com>
> 
> h <http://blog.berghold.net>ttp://science-fiction.berghold.net
> <http://science-fiction.berghold.net>
> 

Hi,

The virtual file is not realized when you call it from your farfaraway
class. Add `include scripts::myscript` before your cmd resource in that
class and it should work.

Best regards,
-g


-- 
Garrett Honeycutt
@learnpuppet
Puppet Training with LearnPuppet.com
Mobile: +1.206.414.8658

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/puppet-users/54D8ED5F.2070401%40garretthoneycutt.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to