Philip Brown wrote:
> So, I cant use these moduley things, unless I additionally install
> "puppet-module".
> I cant install an officially "released" version of puppet-module ,
> unless I install "gems", it seems. (which, oddly, is not part of core ruby)
> I cant even install a source version, unless I install git... and even
> then, there's no nice "install.rb" file like puppet and facter have... I
> have to apparently install yet ANOTHER tool, rake?
> 
> :(
> 
> Lemme know when your "easy module installation tool" is actually easy to
> install itself, please.
> Having a one-stop-shopping install.rb file would be one way to
> accomplish this. It's rather backwards, when your "easy" puppet
> configuration tool, is more difficult to install than puppet itself.
> 

Actually it's not - packages work and are the recommended way anyone
should manage things like this:

$ yum/apt install ruby rubygems
$ gem install puppet-module

Installing from source IMHO just doesn't scale.

Our even better:

package { [ "ruby", "rubygems" ]:
  ensure => latest,
}

package { "puppet-module":
  ensure => latest,
  provider => gem,
  require => Package["rubygems"],
}

Easy.

James

-- 
James Turnbull
Puppet Labs
1-503-734-8571
To schedule a meeting with me: http://tungle.me/jamtur01

-- 
You received this message because you are subscribed to the Google Groups 
"Puppet Developers" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/puppet-dev?hl=en.

Reply via email to