From 0d00c0fdf8becbdf14493ae46e1465a1085e18a5 Mon Sep 17 00:00:00 2001 From: Himanshu Garg Date: Tue, 1 Dec 2015 17:40:44 -0600 Subject: [PATCH] Fix Download get-pip play in vagrant.yml Fixes syntax for get_url module in ansible playbook vagrant.yml which was causing the vagrant up command to fail. Change-Id: Iffb0b17c8f808b33538b06d21c52ca603f018a9c Closes-Bug: 1521750 --- tools/vagrant_dev_env/vagrant.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/vagrant_dev_env/vagrant.yml b/tools/vagrant_dev_env/vagrant.yml index b137cc4bc..e884c4776 100644 --- a/tools/vagrant_dev_env/vagrant.yml +++ b/tools/vagrant_dev_env/vagrant.yml @@ -20,8 +20,8 @@ when: ansible_distribution == 'Ubuntu' - name: Download get-pip - get_url: https://bootstrap.pypa.io/get-pip.py - dest: /tmp/get-pip.py + get_url: url=https://bootstrap.pypa.io/get-pip.py + dest=/tmp/get-pip.py - name: Install pip shell: python /tmp/get-pip.py