Forge Home

buildbot

Manage a buildbot installation

10,252 downloads

10,252 latest version

1.5 quality score

We run a couple of automated
scans to help you access a
module's quality. Each module is
given a score based on how well
the author has formatted their
code and documentation and
modules are also checked for
malware using VirusTotal.

Please note, the information below
is for guidance only and neither of
these methods should be considered
an endorsement by Puppet.

Version information

  • 0.0.1 (latest)
released Dec 30th 2012

Start using this module

  • r10k or Code Manager
  • Bolt
  • Manual installation
  • Direct download

Add this module to your Puppetfile:

mod 'edgester-buildbot', '0.0.1'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add edgester-buildbot
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install edgester-buildbot --version 0.0.1

Direct download is not typically how you would use a Puppet module to manage your infrastructure, but you may want to download the module in order to inspect the code.

Download

Documentation

edgester/buildbot — version 0.0.1 Dec 30th 2012

buildbot

This is the buildbot module for puppet. It installs buildbot from the buildbot git repo on github.com.

The module was developed on Debian 6.0.5. It's been tested on Debian 6.0.5.

Initial development was targetted towards use with Vagrant http://vagrantup.com

Patches and pull requests are welcome.

License

2-clause BSD

Contact

Jason Edgecombe : jason at rampaginggeek dot net

Support

Please log tickets and issues at our [Projects site](http://github.com/edgester/puppet-buildbot

Example

Here is an example of how to use the module to set up a build master and two slaves on the same host:

buildbot::master::instance { 'my_master' : user => 'buildmaster', group => 'buildbot', project_dir => '/home/buildmaster/buildbot', config => '/vagrant/puppet/files/master.cfg', }

buildbot::slave::instance { 'my_slave1': user => 'buildslave', group => 'buildbot', project_dir => '/home/buildslave/buildbot', master_host_port => 'localhost:9989', slave_name => 'mybuildslave', slave_password => 'password', admin_contact => 'Buildslave admin user@example.com', }

buildbot::slave::instance { 'my_slave2': user => 'buildslave2', group => 'buildbot', project_dir => '/home/buildslave2/buildbot2', master_host_port => 'localhost:9989', slave_name => 'mybuildslave2', slave_password => 'password', admin_contact => 'Buildslave admin user@example.com', }

class{'buildbot::install::git':

defaults to buildbot's git repo

source => 'git://github.com/buildbot/buildbot.git',

}