Vagrantfile #2

  • //
  • guest/
  • jen_bottom/
  • vagrant/
  • p4bbi/
  • Vagrantfile
  • View
  • Commits
  • Open Download .zip Download (749 B)
# -*- mode: ruby -*-
# vi: set ft=ruby :

# This is a set of different vagrant setups that are primarily useful for package
# building and testing. The techniques here were borrowed from the Git Fusion
# team.
Vagrant.configure(2) do |config|
#
  config.vm.define 'bbi' do |vagrant|
    vagrant.vm.hostname = 'bbi'
    vagrant.vm.box = 'ubuntu/trusty64'
    vagrant.vm.communicator = "ssh"
    config.ssh.insert_key=true  
config.ssh.keys_only = true
    vagrant.vm.network :public_network

    vagrant.vm.synced_folder '.', '/home/vagrant/hws'

    # We have real problems provisioning a machine with only 1GB RAM.
    vagrant.vm.provider 'virtualbox' do |vb|
      vb.memory = 4096
    end
  vagrant.vm.provision "shell", path: "bbi.sh"
  end
end
# Change User Description Committed
#2 25621 Jen Bottom Integrating sone fixes from dev to main
#1 23052 Jen Bottom Creating a VM for the P4BBI tool