Add vagrant-scp dependency to Vagrantfile

This commit is contained in:
Charlie O'Keefe 2019-03-24 10:44:43 -06:00
parent f120e55522
commit 953dd88e56
1 changed files with 4 additions and 1 deletions

5
Vagrantfile vendored
View File

@ -2,7 +2,10 @@
# vi: set ft=ruby :
Vagrant.configure(2) do |config|
config.vagrant.plugins = {"vagrant-disksize" => {"version" => "0.1.3"}}
config.vagrant.plugins = {
"vagrant-disksize" => {"version" => "0.1.3"},
"vagrant-scp" => {"version" => "0.5.7"}
}
config.ssh.forward_agent = true
config.disksize.size = '16GB'