How can I have a module/class that is dependent on another class?

Say, /etc/puppet/modules:

module1
module2

in module2/manifests/init.pp

class module2 {
  file { # blah blah blah
    require => Class["module1"],
   }
  package { }
}

Usually this gives me an error (can't remember what; I'm writing this from
home, and I use it at work).

If this isn't enough information for a proper question, I can reply to this
message tomorrow after testing to get the error message again.

Right now to get around it I just have my main class including several other
classes, but because of the dependencies, some of them fail the first time
around, but succeed after running a second time and one of the other
conditions had been met from the previous run (like an installed package or
something).  It is not the way I want to do it, of course, but I've still
been experimenting with different things.

/lsd

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