Vagrantfile #3

  • //
  • guest/
  • jen_bottom/
  • vagrant/
  • fedora18/
  • Vagrantfile
  • View
  • Commits
  • Open Download .zip Download (853 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 'fedora18' do |vagrant|
    vagrant.vm.hostname = 'fedora18'
  vagrant.vm.box = "rafacas/fedora18-plain"
   vagrant.vm.communicator = "ssh"
    config.ssh.insert_key=true  
config.ssh.keys_only = true
config.ssh.pty = true
   vagrant.vm.network :public_network
#vagrant.vm.network :private_network, ip: '172.16.100.13'

    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.gui = false
      vb.memory = 4096
    end
config.vm.provision "shell", path: "setup.sh"
end
end
# Change User Description Committed
#3 25621 Jen Bottom Integrating sone fixes from dev to main
#2 23381 jenbottom Adding a line to bring the VM up without a GUI, as I do not usually need it
#1 23213 Jen Bottom Adding setup script and Vagrantfile for a Fedora18 machine