Merge pull request #9308 from keks24/patch-1

correct pip argument in the example of ansible_local provisioner documentation
This commit is contained in:
Gilles Cornu 2018-01-05 14:17:15 +01:00 committed by GitHub
commit eb1ed03448
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -123,7 +123,7 @@ This section lists the _specific_ options for the Ansible Local provisioner. In
config.vm.provision "ansible_local" do |ansible|
ansible.playbook = "playbook.yml"
ansible.install_mode = :pip
ansible.pip_args = "--install-url https://pypi.internal"
ansible.pip_args = "--index-url https://pypi.internal"
end
```