build/post_upgrade.sh
author ymh <ymh.work@gmail.com>
Thu, 16 Feb 2017 16:10:07 +0100
changeset 513 dad9471f0d63
parent 384 5598bad67f8d
child 541 e756a8c72c3d
permissions -rw-r--r--
add filter on created date in notice

#!/usr/bin/env sh
PATH=/opt/remi/php56/root/usr/bin/:$PATH

if [ -x /usr/local/bin/drush ]; then
    echo "Reactivate corpus module"
    /usr/local/bin/drush -r /var/www/corpusdelaparole/drupal pm-enable -y corpus
    echo "Clear drupal cache"
    /usr/local/bin/drush -r /var/www/corpusdelaparole/drupal cc all
fi

if [ -d /var/www/corpusdelaparole/corpus-back/ ]; then
    pushd /var/www/corpusdelaparole/corpus-back/ > /dev/null

    echo "Migrating back office database"
    php artisan migrate -n --force

    echo "Optimizing framework"
    php artisan optimize
    php artisan config:cache
    php artisan route:cache

    echo "Correcting file permissions for back office"
    chgrp -R apache storage bootstrap/cache
    chmod -R ug+rwx storage bootstrap/cache

    echo "Put back application in production"
    php artisan up

    popd > /dev/null
fi

echo "Restart httpd"
/usr/bin/systemctl restart httpd