On Wed, 2010-06-02 at 15:16 -0700, Patrick wrote:
> Sorry, but you might have lost me.  Are you saying that you're having 
> problems because when you define the repository in two places it throws an 
> error?
> 

Not quite! :)

I want to define all my repos in one module and then include the repos
based upon the node class.

For example:

=================================

class webserver {

        yumrepo{["atrpms-stable","atrpms-testing","epel","centos-base"]}

        # install webserver stuff
        ...
        #finish

}

class mailserver {

        yumrepo{['"centos-base","epel","elff"]}

        # do mailserver install
        ...
        # finish mailserver install

}
=================================

and then in my repos module:

=================================

yumrepo{ atrpms-stable:
        name => "atrpms",
        baseurl => "http://dl.atrpms.net/el\$releasever-\
$basearch/atrpms/stable",
        descr => "atrpms for exim etc",
        enabled => "1",
        includepkgs => "exim-* dovecot* libspf2* libsrs*",
        gpgkey => "http://atrpms.net/RPM-GPG-KEY.atrpms";,
        gpgcheck => "1"
}


yumrepo{ atrpms-testing:
        name => "atrpms-testing",
        baseurl => "http://dl.atrpms.net/el\$releasever-\
$basearch/atrpms/testing",
        descr => "atrpms for exim etc",
        enabled => "1",
        includepkgs => "exim-* dovecot* libspf* libsrs*",
        gpgkey => "http://atrpms.net/RPM-GPG-KEY.atrpms";,
        gpgcheck => "1"
}

===================================

So I only get the minimal repos needed for each node class.

At the moment I can include all the repos or none of the repos and I'd
like to bemore subtle about it without having to redefine each repo for
each class it is used in.

If there's a more appropriate/better way of achieving this, please let
me know!

Kind regards,

Matt

-- 
You received this message because you are subscribed to the Google Groups 
"Puppet Users" group.
To post to this group, send email to puppet-us...@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