Are those packages defined in different files? If they are in the same
file you can just do the following

package {['pgk1', 'pkg2']:
    ensure => 'installed',
} -> 

file { 'file1':
...
}


If they are in different files you maybe will be able to hack something
with the "spaceship operator" but it will hard and might brake in the
future because of circular dependencies :(


-- 
Nikola

On Wed, May 08, 2013 at 03:52:44AM -0700, Bret Wortman wrote:
> What's the right/best way to indicate that a particular entry in a manifest 
> (a file in this case) depends on successful installation of over 30 
> packages, all indicated in the same manifest? I could do this, but it seems 
> cumbersome:
> 
> package { 'pkg1': }
> Package['pkg1'] -> File['file1']
> 
> package { 'pkg2': }
> Package['pkg2'] -> File['file2']
> :
> :
> file { 'file2':
>     path => '/path/to/file2',
>     :
> }
> 
> There must be a better way that I'm just not seeing. Thanks!
> 
> 
> Bret Wortman
> 
> -- 
> 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?hl=en.
> 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?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to