Skip to content
This repository was archived by the owner on Sep 10, 2021. It is now read-only.

Commit 7528ecf

Browse files
authored
Merge pull request #236 from bbenoist/vagrant-windows
Make the Vagrant box work with Windows hosts
2 parents 89a9cdd + 0e0fbd9 commit 7528ecf

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Vagrantfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Vagrant.configure(2) do |config|
4141
vmware_workstation.vmx['memsize'] = 4096
4242
vmware_workstation.vmx['numvcpus'] = 2
4343
end
44-
config.vm.provision 'ansible' do |ansible|
44+
config.vm.provision 'ansible_local' do |ansible|
4545
ansible.playbook = 'provisioning/ansible/site.yml'
4646
end
4747
end

provisioning/ansible/roles/python/tasks/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
when: ansible_pkg_mgr == 'yum'
4444

4545
- name: pip install
46-
pip: name={{ item }} virtualenv=/vagrant/env state=present
46+
pip: name={{ item }} virtualenv=/home/vagrant/env state=present
4747
with_items:
4848
- mkdocs
4949
- pydas

0 commit comments

Comments
 (0)