Skip to content

Commit 083797a

Browse files
committed
release Vagrantfiles: fix AWS CLI install
1 parent 5f8fa5f commit 083797a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

etc/vagrant/debian-7-amd64/Vagrantfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ Vagrant.configure(2) do |config|
3333
if ! which aws; then
3434
apt-get install -y python2.7
3535
curl -O https://bootstrap.pypa.io/get-pip.py
36-
python27 get-pip.py
37-
pip install awscli
36+
sudo python2.7 get-pip.py
37+
sudo pip install awscli
3838
fi
3939
SHELL
4040
end

etc/vagrant/debian-7-i386/Vagrantfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ Vagrant.configure(2) do |config|
3535
if ! which aws; then
3636
apt-get install -y python2.7
3737
curl -O https://bootstrap.pypa.io/get-pip.py
38-
python27 get-pip.py
39-
pip install awscli
38+
sudo python2.7 get-pip.py
39+
sudo pip install awscli
4040
fi
4141
SHELL
4242
end

0 commit comments

Comments
 (0)