Skip to content

Commit

Permalink
Update vagrant boxes to Go 1.7.3 (elastic#2927)
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewkroh authored and ruflin committed Nov 3, 2016
1 parent be3afe0 commit 1c64b0b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -76,15 +76,15 @@ Vagrant.configure(2) do |config|

# Solaris 11.2
config.vm.define "solaris", primary: true do |solaris|
solaris.vm.box = "https://s3.amazonaws.com/beats-files/vagrant/beats-solaris-11.2-virtualbox-2016-01-23_0522.box"
solaris.vm.box = "https://s3.amazonaws.com/beats-files/vagrant/beats-solaris-11.2-virtualbox-2016-11-02_1603.box"
solaris.vm.network :forwarded_port, guest: 22, host: 2223, id: "ssh", auto_correct: true

solaris.vm.provision "shell", inline: $unixProvision, privileged: false
end

# FreeBSD 11.0
config.vm.define "freebsd", primary: true do |freebsd|
freebsd.vm.box = "https://s3.amazonaws.com/beats-files/vagrant/beats-freebsd-11.0-virtualbox-2016-01-23_1919.box"
freebsd.vm.box = "https://s3.amazonaws.com/beats-files/vagrant/beats-freebsd-11.0-virtualbox-2016-11-02_1638.box"
freebsd.vm.network :forwarded_port, guest: 22, host: 2224, id: "ssh", auto_correct: true

# Must use NFS to sync a folder on FreeBSD and this requires a host-only network.
Expand All @@ -95,9 +95,9 @@ Vagrant.configure(2) do |config|
freebsd.vm.provision "shell", inline: $unixProvision, privileged: false
end

# OpenBSD 5.9-current
# OpenBSD 5.9-stable
config.vm.define "openbsd", primary: true do |openbsd|
openbsd.vm.box = "https://s3.amazonaws.com/beats-files/vagrant/beats-openbsd-5.9-current-virtualbox-2016-04-22_0422.box"
openbsd.vm.box = "https://s3.amazonaws.com/beats-files/vagrant/beats-openbsd-5.9-current-virtualbox-2016-11-02_2007.box"
openbsd.vm.network :forwarded_port, guest: 22, host: 2225, id: "ssh", auto_correct: true

config.vm.synced_folder ".", "/vagrant", type: "rsync", disabled: true
Expand Down

0 comments on commit 1c64b0b

Please sign in to comment.