Version information
Start using this module
Add this module to your Puppetfile:
mod 'edgester-buildbot', '0.0.1'
Learn more about managing modules with a PuppetfileDocumentation
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',
}
Dependencies
- puppetlabs/vcsrepo (>= 0.0.0)
Copyright (c) 2012, Jason Edgecombe <jason@rampaginggeek.com> All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.