On Sun, Apr 18, 2010 at 1:47 PM, Mayank <mail2may...@gmail.com> wrote:
> On Sun, Apr 18, 2010 at 8:45 AM, Nigel Kersten <nig...@google.com> wrote: > >> On Sat, Apr 17, 2010 at 6:21 PM, Douglas Garstang >> <doug.garst...@gmail.com> wrote: >> > On Thu, Apr 15, 2010 at 8:44 AM, Jim Bala <usr...@gmail.com> wrote: >> >> On Apr 15, 2010, at 1:30 AM, Mayank wrote: >> >> >> >>> Hi, >> >>> I'm trying to manage some hosts using a single puppetmaster. I >> >>> don't know why but puppet on clients seems to be executing the recipes >> >>> hosted on puppetmaster in a random order which is breaking apart >> >>> dependencies and resulting in a failed run of puppet for first time. >> >>> If I do multiple run of puppet thru puppetd --test, everything gets >> >>> installed and configured properly. However it's very rare that on >> >>> first run I can see puppet managing the configuration and installation >> >>> without fail. >> >>> Is there any way I can bring about serial execution of puppet >> >>> recipes. What I mean by serial execution is that suppose I've a >> >>> site.pp with following content: >> >>> >> >>> package {"ruby-devel": ensure=>latest} >> >>> package {"rubygems": ensure=>latest} >> >>> exec {"install-mysql-gem": >> >>> command=>'gem install mysql', >> >>> path=>"/bin:/usr/bin:/usr/sbin:/sbin", >> >>> require=>[ Package["ruby-devel"], Package["rubygems"]] >> >>> } >> >>> >> >>> Now in many cases puppet tries to execute Exec["install-mysql-gem"] >> >>> before Package["ruby-devel"] or Package["rubygems"] or both. >> >>> >> >>> Is there a way that I can ensure that puppet renders the file in order >> >>> the script is written ? >> >>> >> >>> BTW I'm using CentOS 5.4 with puppet-server-0.24.5-1.el5 and >> >>> puppet-0.24.5-1.el5. >> > >> > Keep at it. You'll get it all working with requires=> eventually. It >> > will take forever, your head will hurt, and by the time your done, >> > you'll have a god-aweful dependency mess that will make you totally >> > afraid to touch any of it ever again, but you'll get it eventually if >> > you keep at it! I did! >> >> So we went there with the more complicated parts of our config, and >> then I came back to sanity, with enforcing this really really simple >> rule on all our commits. As intra-class require/before statements can >> only refer to individual resources. (by definition), the rule is that: >> >> Inter-class require/before statements can only refer to whole classes, >> never ever individual resources within those classes. >> >> >> I mean this is all good programming practice, but it's not something >> people always keep in mind when putting out an ops fire and checking >> fixes in, but it really makes your dependency situation so much >> cleaner. You have well defined interfaces between objects, and you're >> free to change internal behavior as you need to without being afraid >> to touch stuff. >> >> >> > >> > Doug. >> > >> > >> > >> >> >> >> -- >> nigel >> >> > I can't take chances with re running puppet as what I am trying to > accomplish is complete automation of a setup on EC2. I've a script which > fires up new instances on EC2. These instances are built using custom AMI > (machine images) which have entry for puppetmaster in /etc/hosts and have > puppet installed on 'em. I am running puppetd --test thru rc.local and since > my puppetmaster is configured to autosign, hence I need this first run of > puppetd --test to get the job done. As entire setup is automated so I can't > wait for multiple runs of puppet before everything gets installed properly. > I've tried to make a dependency tree which should work out for me and will > be testing it in next 20 min .... Will revert back with any updates in case > something fails this time... I need this first run of puppet to run without > fail for me... Praying to God this time to make it a success :) > > Regards, > -- > Mayank > Found an error: Following is my puppet recipe: 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["rubygems-install"], } package {"coreutils": ensure => latest} package {"subversion": ensure => latest} package {"GeoIP-devel": ensure => latest} 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, } 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 => [ Package["ruby-devel"], Package["GeoIP-devel"], File["/tmp/net-geoip"] ], } } During first run of puppet thru rc.local I got following error in /var/log/messages Apr 18 04:11:55 ip-10-250-107-162 puppetd[1812]: (//hadooprole/hadoopbase/Package[ruby-devel]/ensure) change from absent to latest failed: Could not update: Execution of '/usr/bin/yum -d 0 -e 0 -y install ruby-devel' returned 1: Error: Missing Dependency: ruby-libs = 1.8.6.110-2.fc8 is needed by package ruby-devel#012 at /etc/puppet/manifests/classes/hadoopbase.pp:13 However when I checked for ruby-libs package I found: [r...@ip-10-250-107-162 ~]# rpm -qa | grep ruby ruby-1.8.6.114-1.fc8 ruby-irb-1.8.6.114-1.fc8 rubygems-0.9.4-1.fc8 ruby-libs-1.8.6.114-1.fc8 ruby-rdoc-1.8.6.114-1.fc8 Then I did re-run of puppet thru puppetd --test and it ran without fail and now I've this [r...@ip-10-250-107-162 ~]# rpm -qa | grep ruby ruby-libs-1.8.6.287-2.fc8 ruby-rdoc-1.8.6.287-2.fc8 ruby-shadow-1.4.1-10.fc8 ruby-1.8.6.287-2.fc8 ruby-devel-1.8.6.287-2.fc8 rubygems-1.2.0-2.fc8 ruby-irb-1.8.6.287-2.fc8 Any ideas as to why ruby-devel was not able to install properly during first run ? -- 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.