Hi,

I am having difficulties understanding how to get 2 modules to install one 
after the other.
I have in total 3 modules:

    common  # contains everything common to the master and slave 
configuration
    slave   # contains what is specific to the slaves config
    master  # contains what is specific to the masters config

    node  'myslave1'
    {
      class {      
          "common":
              database => "192.168.1.10",
              before => Class["slave"];
      }
        
      class {
          "slave":
      }
    }
    
I am trying to tell the slave module to run after the common module is 
totally applied, but it doesn't work like I am expecting. In the common 
module
I set some repository and execute an update on the newly added repository.
But what happen is that, some slave package tries to get installed before
the common module complete the configuration of the repositories.

How can I achieve my goal?

Best,
Dominick

-- 
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/-/S6WCLMbN_l8J.
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