From 0e6d52fd528688bc048bee871184d2e6424ed14b Mon Sep 17 00:00:00 2001 From: Luciano Ziegler Date: Sun, 22 Mar 2015 16:05:10 -0500 Subject: [PATCH] Agent forwarding over SSH connections --- Vagrantfile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Vagrantfile b/Vagrantfile index e5e47a2..dc4281f 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -38,6 +38,11 @@ Vagrant.configure(2) do |config| # The second parameter must be an absolute path of where to share the folder within the guest machine. # Finally the third parameter is a set of non-required options to configure synced folders. config.vm.synced_folder "public/", "/var/www/", group: 'www-data', :owner => "vagrant" + + # config.ssh.forward_agent + # + # If true, agent forwarding over SSH connections is enabled. + config.ssh.forward_agent = true # Run the main shell provisioner. config.vm.provision 'shell', run: 'always' do |s|