Vagrantfile #3

  • //
  • guest/
  • jen_bottom/
  • vagrant/
  • hth/
  • hth_centos/
  • Vagrantfile
  • View
  • Commits
  • Open Download .zip Download (617 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 'hth' do |config|
    config.vm.hostname = 'hth'
  config.vm.box = 'centos/7'
	config.vm.communicator = 'ssh'
    config.vm.network :private_network, ip: '172.16.100.14'

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

    config.vm.provider 'virtualbox' do |vb|
      vb.memory = 4096
    end
  config.vm.provision "shell", path: "hth.sh"
  end
end
# Change User Description Committed
#3 25621 Jen Bottom Integrating sone fixes from dev to main
#2 25132 Jen Bottom Copy up from dev to main
#1 23851 Jen Bottom Integrating centos Vagrant hth box to main