-
Notifications
You must be signed in to change notification settings - Fork 0
/
VagrantFile
29 lines (24 loc) · 1.13 KB
/
VagrantFile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant::Config.run do |config|
# All Vagrant configuration is done here. The most common configuration
# options are documented and commented below. For a complete reference,
# please see the online documentation at vagrantup.com.
# config.vm.define :web do |web_config|
# web_config.vm.customize ["modifyvm", :id, "--name", "web", "--memory", "512"]
# web_config.vm.box = "ubuntu1204_ruby193_puppetmasterd_v1.1"
# web_config.vm.host_name = "web"
# web_config.vm.forward_port 22, 2222, :auto => true
# web_config.vm.forward_port 80, 4567, :auto => true
# web_config.vm.network :bridged #, :bridge => "en0: Ethernet"
# web_config.vm.share_folder "puppet", "/etc/puppet", "../mdn_ops"
# end
config.vm.define :beta do |beta_config|
beta_config.vm.customize ["modifyvm", :id, "--name", "beta", "--memory", "512"]
beta_config.vm.box = "ubuntu1204_ruby193_puppetmasterd_v1.1"
beta_config.vm.host_name = "beta"
beta_config.vm.forward_port 22, 2222, :auto => true
beta_config.vm.network :bridged #, :bridge => "en0: Ethernet"
beta_config.vm.share_folder "puppet", "/etc/puppet", "../mdn_ops"
end
end