...
Code Block | ||||
---|---|---|---|---|
| ||||
###### Magento 2 EE w/ Subscriptions * * * * * flock -n /{path_to_magento}var/www/html/var/locks/cron-run.lock php /{path_to_magento}/var/www/html/bin/magento cron:run | grep -v "Ran jobs by schedule" >> /{path_to_magento}/var/www/html/var/log/magento.cron.log * * * * * php /{path_to_magento}/var/www/html/update/cron.php >> /{path_to_magento}/var/www/html/var/log/update.cron.log * * * * * php /{path_to_magento}/var/www/html/bin/magento setup:cron:run >> /{path_to_magento}var/www/html/var/log/setup.cron.log */5 * * * * flock -n /{path_to_magento}/var/www/html/var/locks/sub-generate.lock php /{path_to_magento}var/www/html/bin/magento tnw_subscriptions:quotes:generate >> /{path_to_magento}var/www/html/var/log/sub-generation.cron.log */5 * * * * flock -n /{path_to_magento}/var/www/html/var/locks/sub-process.lock php /{path_to_magento}/var/www/html/bin/magento tnw_subscriptions:process >> /{path_to_magento}var/www/html/var/log/sub-processing.cron.log |
...