зеркало из https://github.com/mozilla/treeherder.git
35 строки
1.0 KiB
Ruby
35 строки
1.0 KiB
Ruby
# -*- mode: ruby -*-
|
|
# vi: set ft=ruby :
|
|
|
|
# We require 1.5+ due to specifying only the box name and not config.vm.box_url.
|
|
Vagrant.require_version ">= 1.5.0"
|
|
|
|
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing!
|
|
VAGRANTFILE_API_VERSION = "2"
|
|
|
|
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
|
|
# Every Vagrant virtual environment requires a box to build off of.
|
|
config.vm.box = "ubuntu/trusty32"
|
|
|
|
config.vm.hostname = "local.treeherder.mozilla.org"
|
|
config.vm.network "private_network", ip: "192.168.33.10"
|
|
|
|
config.vm.synced_folder ".", "/home/vagrant/treeherder", type: "nfs"
|
|
|
|
config.vm.provider "virtualbox" do |vb|
|
|
vb.customize ["modifyvm", :id, "--memory", "1024"]
|
|
end
|
|
|
|
config.vm.define "default", primary: true
|
|
config.vm.define "scratch", autostart: false
|
|
|
|
config.vm.provision :puppet do |puppet|
|
|
puppet.manifests_path = "puppet/manifests"
|
|
puppet.manifest_file = "vagrant.pp"
|
|
|
|
# enable this to see verbose and debug puppet output
|
|
#puppet.options = "--verbose --debug"
|
|
end
|
|
|
|
end
|