Skip to main content
summaryrefslogtreecommitdiffstats
blob: e882eae23bf3ec9d4292cdbbcd056c867dfc652d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Vagrant.configure("2") do |config|
  config.vm.box = "ubuntu-14.04-x86_64"
  config.vm.box_url = "http://mylyn.org/files/boxes/ubuntu-14.04-x86_64.box"

  config.vm.network "forwarded_port", guest:  80, host: 2080
  config.vm.network "forwarded_port", guest: 443, host: 2443

  config.vm.provider "virtualbox" do |v|
    v.name = "Mylyn Tasks - Bugzilla Repositories"
  end

  config.vm.provision "puppet" do |puppet_bugzilla|
    puppet_bugzilla.module_path = "modules"
    puppet_bugzilla.manifests_path = "manifests"
    puppet_bugzilla.manifest_file = "default.pp"
#    puppet_bugzilla.options = "--verbose --debug"
  end
end

Back to the top