Skip to content

Commit

Permalink
update vagrant to FreeBSD-13.0 and install git
Browse files Browse the repository at this point in the history
  • Loading branch information
w4andy committed Nov 1, 2021
1 parent 27ea047 commit db2e7e3
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|

vm_config.ssh.shell = "sh"

vm_config.vm.box = "freebsd/FreeBSD-12.1-RELEASE"
vm_config.vm.box_version = "2019.11.01"
vm_config.vm.box = "freebsd/FreeBSD-13.0-RELEASE"
vm_config.vm.box_version = "2021.04.09"

vm_config.vm.provider "virtualbox" do |vb|
vb.name = "bastille"
Expand All @@ -19,6 +19,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
end

vm_config.vm.provision "shell", inline: "cd /vagrant; make install"
vm_config.vm.provision "shell", inline: "pkg install -y git-lite"

end
end

0 comments on commit db2e7e3

Please sign in to comment.