From ef34f29b49c0970ea17a936b55a0138b32a1e96e Mon Sep 17 00:00:00 2001 From: Kumar McMillan Date: Mon, 23 Jan 2012 14:34:34 -0600 Subject: [PATCH] Explicitly sets the pip build dir, disables pip timeout --- .gitignore | 1 - vagrant/manifests/classes/python.pp | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 2d1bf18bef..9cd7524866 100644 --- a/.gitignore +++ b/.gitignore @@ -24,4 +24,3 @@ tmp/* tags vagrantconfig_local.yaml vagrant/manifests/classes/custom.pp -vagrant/manifests/build diff --git a/vagrant/manifests/classes/python.pp b/vagrant/manifests/classes/python.pp index fb52047ec5..3f2c1bcffe 100644 --- a/vagrant/manifests/classes/python.pp +++ b/vagrant/manifests/classes/python.pp @@ -14,9 +14,9 @@ class python { } exec { "pip-install-compiled": - command => "sudo pip install -r $PROJ_DIR/requirements/compiled.txt", + command => "sudo pip install --build=/tmp/pip-build -r $PROJ_DIR/requirements/compiled.txt", # Set timeout to 10 min just in case - timeout => 600, + # timeout => 600, logoutput => true, require => [ Exec["upgrade_pip"],