Remove --traceback option when syncing/migrating schemas

This commit is contained in:
Benjamin Dauvergne 2014-09-18 15:26:08 +02:00
parent 505bd45188
commit 6c42b8ac0c
1 changed files with 2 additions and 2 deletions

4
init.d
View File

@ -114,8 +114,8 @@ do_migrate() {
log_action_msg "Applying new migrations .."
if [ "x$TENANT_BASE" != "x" ]; then
su $USER -p -c "python $MANAGE_SCRIPT create_schema"
su $USER -p -c "python $MANAGE_SCRIPT sync_schemas --noinput --traceback"
su $USER -p -c "python $MANAGE_SCRIPT migrate_schemas --noinput --traceback"
su $USER -p -c "python $MANAGE_SCRIPT sync_schemas --noinput"
su $USER -p -c "python $MANAGE_SCRIPT migrate_schemas --noinput"
else
su $USER -p -c "python $MANAGE_SCRIPT syncdb --migrate --noinput"
fi