Add --noinput when calling migrate

This commit is contained in:
Benjamin Dauvergne 2015-03-25 14:33:05 +01:00
parent 3504b3e597
commit 1f06502324
1 changed files with 1 additions and 1 deletions

View File

@ -136,7 +136,7 @@ do_migrate() {
if dpkg --compare-versions $VERSION lt 1.7; then
su $USER -p -c "$MANAGE_SCRIPT syncdb --migrate --noinput"
else
su $USER -p -c "$MANAGE_SCRIPT migrate"
su $USER -p -c "$MANAGE_SCRIPT migrate --noinput"
fi
log_action_msg ".. done"
}