More logging to figure out why these commands kill vagrant

This commit is contained in:
Kumar McMillan 2012-01-23 16:08:46 -06:00
Родитель fc6bf4c499
Коммит 86d2ff4c92
2 изменённых файлов: 2 добавлений и 1 удалений

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

@ -14,7 +14,7 @@ class python {
} }
exec { "pip-install-compiled": exec { "pip-install-compiled":
command => "sudo pip install --build=/tmp/pip-build -r $PROJ_DIR/requirements/compiled.txt", command => "sudo pip install -v --build=/tmp/pip-build -r $PROJ_DIR/requirements/compiled.txt",
# Set timeout to 10 min just in case # Set timeout to 10 min just in case
# timeout => 600, # timeout => 600,
logoutput => true, logoutput => true,

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

@ -54,6 +54,7 @@ class zamboni {
exec { "sql_migrate": exec { "sql_migrate":
cwd => "$PROJ_DIR", cwd => "$PROJ_DIR",
command => "python ./vendor/src/schematic/schematic migrations/", command => "python ./vendor/src/schematic/schematic migrations/",
logoutput => true,
require => [ require => [
Service["mysql"], Service["mysql"],
Package["python2.6"], Package["python2.6"],