This was working on Vagrant 1.4.3 (Mac).
#HOST#
File: ~/.ssh/config
Host vagrant.*
ForwardAgent yes
File: Vagrantfile
This was working on Vagrant 1.4.3 (Mac).
#HOST#
File: ~/.ssh/config
Host vagrant.*
ForwardAgent yes
File: Vagrantfile
| import json | |
| from collections import defaultdict | |
| class NestedDefaultDict(defaultdict): | |
| def __init__(self, depth, default=int, _root=True): | |
| self.root = _root | |
| self.depth = depth | |
| if depth > 1: |