- # -*- mode: ruby -*-
- # vi: set ft=ruby :
-
- # All Vagrant configuration is done below. The "2" in Vagrant.configure
- # configures the configuration version (we support older styles for
- # backwards compatibility). Please don't change it unless you know what
- # you're doing.
- Vagrant.configure("2") do |config|
- #For latest Git Fusion on Ubuntu Trusty
- config.vm.define 'gitfusion' do |vagrant|
- vagrant.vm.hostname = 'gitfusion'
- vagrant.vm.box = "bento/ubuntu-16.04"
- vagrant.vm.communicator = "ssh"
- config.ssh.insert_key=false
-
- vagrant.vm.network :private_network, ip: '192.168.2.73'
- 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: "gf.sh"
- end
- end
# |
Change |
User |
Description |
Committed |
|
#1
|
26035 |
Jen Bottom |
refactor of Git Fusion directory |
6 years ago
|
|
//guest/jen_bottom/vagrant/gitfusion/Vagrantfile |
#6
|
25621 |
Jen Bottom |
Integrating sone fixes from dev to main |
6 years ago
|
|
#5
|
25620 |
Jen Bottom |
Copy up from dev to main |
6 years ago
|
|
#4
|
25409 |
Jen Bottom |
Updating files for the Git Fusion vagrant box in main |
6 years ago
|
|
#3
|
24997 |
Jen Bottom |
Integrating Git Fusion box changes from dev to main |
6 years ago
|
|
#2
|
24598 |
Jen Bottom |
Copy up of changes to GitFusion provisioner from dev to main |
7 years ago
|
|
#1
|
24594 |
Jen Bottom |
Copy up from dev to main |
7 years ago
|
|