Explicitly sets the pip build dir, disables pip timeout

This commit is contained in:
Kumar McMillan 2012-01-23 14:34:34 -06:00
Родитель e66028acca
Коммит ef34f29b49
2 изменённых файлов: 2 добавлений и 3 удалений

1
.gitignore поставляемый
Просмотреть файл

@ -24,4 +24,3 @@ tmp/*
tags
vagrantconfig_local.yaml
vagrant/manifests/classes/custom.pp
vagrant/manifests/build

Просмотреть файл

@ -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"],