On Sun, Apr 18, 2010 at 2:39 PM, Patrick <kc7...@gmail.com> wrote: > > On Apr 18, 2010, at 1:55 AM, Daniel Pittman wrote: > > >> Any ideas as to why ruby-devel was not able to install properly during > first > >> run? > > > > Nope. I can tell you right now that it isn't a puppet problem, > though.[1] > > > > The problem is that puppet executed ... > > > > /usr/bin/yum -d 0 -e 0 -y install ruby-devel > > > > ... and yum returned an error, claiming that it couldn't find a > dependency of > > the package. > > > > Fix your yum setup and puppet will start working. (Maybe you need > something > > to run a 'yum update' or something like that?) > > > > Daniel > > > > Footnotes: > > [1] Technically, it may be puppet *related* problem, since the way > puppet > > invokes the yum command, or the scheduling of it, may cause the > failure > > by way of some side-effect. > > As a temporary workaround, try adding an entry to install ruby-libs between > ruby-gems-install and ruby-devel. I say temporary because this looks like a > bug that will cause you other problems down the road if you don't find the > root cause. > > Here's one way to diagnose this. Try running puppet on a new system in > debug mode. Then run those same commands yourself on a new system replacing > -d 0 -e 0 with -d 8 -e 1. Hopefully someone will have an easier idea. > > > Hi, I changed my puppet recipe a bit and here it is :
class hadoopbase{ exec {"rubygems-install": command => 'wget http://rubyforge.org/frs/download.php/69365/rubygems-1.3.6.tgz && tar -zxvf rubygems-1.3.6.tgz && cd rubygems-1.3.6 && ruby setup.rb && cd .. && rm -rf rubygems-1.3.6* && gem update --system', path => "/bin:/usr/bin:/sbin:/usr/sbin:/usr/local/bin", } exec {"updateyum": command => 'yum update -y', path => "/bin:/usr/bin:/sbin:/usr/sbin:/usr/local/bin", } package {"ruby-devel": ensure => latest, require => [ Exec["updateyum"], Exec["rubygems-install"] ], } package {"coreutils": ensure => latest, require => Exec["updateyum"], } package {"subversion": ensure => latest, require => Exec["updateyum"], } package {"GeoIP-devel": ensure => latest, require => Exec["updateyum"], } exec {"downloadGeolite": command => 'cd /root && wget http://10.214.42.7/GeoLiteCity.dat', path => "/bin:/usr/bin:/sbin:/usr/sbin:/usr/local/bin", } exec {"right_aws_gem_install": command => 'gem install --source http://gems.rubyforge.org--version "1.10.0" right_aws', path => "/bin:/usr/bin:/sbin:/usr/sbin", require => Package["ruby-devel"], } exec {"addressable_install": command => 'gem install --source http://gems.rubyforge.org--version "2.1.1" addressable', path => "/bin:/usr/bin:/sbin:/usr/sbin", require => Package["ruby-devel"], } exec {"mime_types": command => 'gem install --source http://gems.rubyforge.org--version "1.16" mime-types', path => "/bin:/usr/bin:/sbin:/usr/sbin", require => Package["ruby-devel"], } file {"/tmp/net-geoip": source => "puppet:///files/hadoop/gems/net-geoip", recurse => true, ensure => present, require => [ Package["ruby-devel"], Package["GeoIP-devel"] ] } exec { "net-geoip-install": command => 'cd /tmp/net-geoip && gem build net-geoip.gemspec && gem install net-geoip-0.0.76.gem', path => "/bin:/usr/bin:/sbin:/usr/sbin:/usr/local/bin", require => File["/tmp/net-geoip"], } } Now I am able to get puppet work for me in very first run. I had to do a require => Exec["updateyum"] for every package installation in order to ensure that the command yum update -y ran before package is being installed. However this brings me to my initial question. Since I'd mentioned exec{"updateyum": ....} before any package statement so had puppet some way of ensuring serial execution of script I would have been saved from mentioning it every time in package statements. -- Mayank -- 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.