jalogut / magento2-deployer-plus

Tool based on deployer.org to perform zero downtime deployments of Magento 2 projects
GNU General Public License v3.0
200 stars 60 forks source link

Do you plan to fix crontab:update command? #55

Closed Maksold closed 4 years ago

Maksold commented 4 years ago

@jalogut In this commit https://github.com/jalogut/magento2-deployer-plus/commit/b4c49604ce7830e6c11cc56f4447331622c0d782#diff-208cd8f19512e36ea5e04343f5d39c1d you disabled crontab:update command. Do you plan to fix it or may be you have ideas how to do it?

osrecio commented 4 years ago

No plan to be fixed.

If you want to have the availability you can have in your deploy.php something like this:

task('magento:cron:update', function () {
    //magic stuff
});

after('deploy:override_shared', 'magento:cron:update');
Maksold commented 4 years ago

Thanks, @osrecio!