search for: my_repo

Displaying 2 results from an estimated 2 matches for "my_repo".

2013 Mar 04
4
Problem while Installing software (agent) from puppetmaster to clients
...d created a new module mcollective under /etc/puppet/modules directory. under manifests, I had created a init.pp with the follwoing contents #Module: mcollective # # Class: mcollective # Description: # This class does it all. # # Files: # /etc/yum.repos.d/newrelic.repo # # class mcollective { $my_repo = ''newrelic_repo'' if $my_repo { include "mcollective::${my_repo}" } $my_install = ''install'' if $my_install { include "mcollective::${my_install}" } } class mcollective::newrelic_repo { file { ''/etc/yum.repos.d/newrelic.repo'...
2011 Feb 17
1
Nested defined resources
I''m working on a module to handle creating and populating Python virtualenvs. Without going into too much detail, basically these are nicely-encapsulated environments into which python packages can be installed and run. It''s not uncommon to have several virtualenvs on a system, potentially with the same packages installed (maybe different versions). Puppet''s defines