Vagrantfile #1

  • //
  • guest/
  • perforce_software/
  • chronicle/
  • main/
  • tests/
  • vagrant_rig/
  • Vagrantfile
  • View
  • Commits
  • Open Download .zip Download (801 B)
# -*- mode: ruby -*-
# vi: set ft=ruby :

Vagrant::Config.run do |config|

    config.vm.define :cms do |cms_config|
      cms_config.vm.box = "lucid32"
      cms_config.vm.box_url = "http://files.vagrantup.com/lucid32.box"  
      cms_config.vm.forward_port("http", 80, 8080)
      cms_config.vm.provision :puppet, :module_path => "modules" do |puppet|
        puppet.manifests_path = "manifests"
        puppet.manifest_file  = "cms.pp"
      end
    end

    config.vm.define :test do |test_config|
      test_config.vm.box = "lucid32"
      test_config.vm.box_url = "http://files.vagrantup.com/lucid32.box"  
      test_config.vm.provision :puppet, :module_path => "modules" do |puppet|
        puppet.manifests_path = "manifests"
        puppet.manifest_file  = "tests.pp"
      end
    end

end
# Change User Description Committed
#1 16170 perforce_software Move Chronicle files to follow new path scheme for branching.
//guest/perforce_software/chronicle/tests/vagrant_rig/Vagrantfile
#1 8972 Matt Attaway Initial add of the Chronicle source code