When reloading do collectstatic and apply migrations between stop and start

This commit is contained in:
Benjamin Dauvergne 2014-09-18 15:13:50 +02:00
parent 825c30d55c
commit e9161a042d
1 changed files with 2 additions and 2 deletions

View File

@ -167,10 +167,10 @@ case "$1" in
#
log_daemon_msg "Restarting $DESC" "$NAME"
do_stop
do_migrate
do_collectstatic
case "$?" in
0|1)
do_migrate
do_collectstatic
do_start
case "$?" in
0) log_end_msg 0 ;;