Skip to content

Commit

Permalink
Fix pasto for this is OpenBSD, not FreeBSD (elastic#1404)
Browse files Browse the repository at this point in the history
  • Loading branch information
jasperla authored and andrewkroh committed Apr 15, 2016
1 parent 515dd68 commit bbbd8d6
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 @@ -96,17 +96,17 @@ Vagrant.configure(2) do |config|
end

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

config.vm.synced_folder ".", "/vagrant", type: "rsync", disabled: true
config.vm.provider :virtualbox do |vbox|
vbox.check_guest_additions = false
vbox.functional_vboxsf = false
end

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

end
Expand Down

0 comments on commit bbbd8d6

Please sign in to comment.