[Lsb-messages] /var/www/bzr/lsb/devel/puppet-lsb r90: The buildbot slave manifest needs wget.

Jeff Licquia licquia at linuxfoundation.org
Sat Jan 28 16:45:12 UTC 2012


------------------------------------------------------------
revno: 90
committer: Jeff Licquia <licquia at linuxfoundation.org>
branch nick: puppet-lsb
timestamp: Sat 2012-01-28 11:45:12 -0500
message:
  The buildbot slave manifest needs wget.
modified:
  modules/buildbot/manifests/slave.pp
-------------- next part --------------
=== modified file 'modules/buildbot/manifests/slave.pp'
--- a/modules/buildbot/manifests/slave.pp	2012-01-28 16:39:37 +0000
+++ b/modules/buildbot/manifests/slave.pp	2012-01-28 16:45:12 +0000
@@ -38,6 +38,12 @@
         ensure => present,
     }
 
+    # Other packages needed by this puppet module.
+
+    package { 'wget':
+        ensure => present,
+    }
+
     # Set up the base infrastructure.    
 
     file { "/opt/buildbot/lsb-slave":
@@ -83,7 +89,7 @@
         cwd     => '/opt/buildbot',
         path    => [ '/bin', '/sbin', '/usr/bin', '/usr/sbin' ],
         creates => "/opt/buildbot/$releasedsdk",
-        require => File['/opt/buildbot'],
+        require => [ Package['wget'], File['/opt/buildbot'] ],
         notify  => File['/opt/buildbot/lsb-released-sdk.tar.gz'],
     }
 
@@ -97,7 +103,7 @@
         cwd     => '/opt/buildbot',
         path    => [ '/bin', '/sbin', '/usr/bin', '/usr/sbin' ],
         creates => "/opt/buildbot/$betasdk",
-        require => File['/opt/buildbot'],
+        require => [ Package['wget'], File['/opt/buildbot'] ],
         notify  => File['/opt/buildbot/lsb-beta-sdk.tar.gz'],
     }
 



More information about the lsb-messages mailing list