Skip to content

Commit

Permalink
* install buildbot
Browse files Browse the repository at this point in the history
  • Loading branch information
eddyxu committed Dec 2, 2013
1 parent fa2e6bf commit b619e4f
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
13 changes: 11 additions & 2 deletions buildbot/Vagrantfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
# -*- mode: ruby -*-
# vi: set ft=ruby :

$inline_script = <<SCRIPT
wget https://bitbucket.org/pypa/setuptools/raw/bootstrap/ez_setup.py -O - | sudo python
sudo easy_install pip
sudo yum install python-devel
sudo pip install buildbot buildbot-slave
SCRIPT

Vagrant.configure("2") do |config|
config.vm.define :master do |master_config|
master_config.vm.box = "ubuntu"
Expand All @@ -13,7 +20,6 @@ Vagrant.configure("2") do |config|

config.vm.define :centos do |centos_config|
centos_config.vm.box = "centos"
centos_config.vm.box_url = "http://developer.nrel.gov/downloads/vagrant-boxes/CentOS-6.4-x86_64-v20130309.box"
end

config.vm.provider :virtualbox do |vb|
Expand All @@ -24,10 +30,13 @@ Vagrant.configure("2") do |config|
vb.customize ["modifyvm", :id, "--memory", "2048"]
end


config.vm.provision :puppet do |puppet|
puppet.manifests_path = "../puppet/vsfs/manifests"
puppet.module_path = "../puppet/vsfs/modules"
puppet.manifest_file = "devbox.pp"
end

config.vm.provision :shell do |s|
s.inline = $inline_script
end
end
2 changes: 1 addition & 1 deletion puppet/vsfs
Submodule vsfs updated from 53cbcd to 00cebc

0 comments on commit b619e4f

Please sign in to comment.