Skip to content
Snippets Groups Projects
Commit c20f903a authored by jurgenhaas's avatar jurgenhaas
Browse files

Allow to disable crontabs

parent 3c271211
No related branches found
No related tags found
No related merge requests found
......@@ -121,6 +121,7 @@
hour='{{ drush_cron_core.hour|default(omit) }}'
minute='{{ drush_cron_core.minute|default(omit) }}'
job='{{ composer_home_path }}/vendor/bin/drush -y @{{ inventory_hostname }}{{ drushSubkey }} core-cron >/dev/null 2>&1'
disabled='{{ crons_disabled|default(false) }}'
when: drush_cron_core.active
tags: 'cron'
......@@ -133,6 +134,7 @@
hour='{{ drush_cron_translation.hour.refresh }}'
minute='{{ drush_cron_translation.minute.refresh }}'
job='{{ composer_home_path }}/vendor/bin/drush -y @{{ inventory_hostname }}{{ drushSubkey }} l10n-update-refresh >/dev/null 2>&1'
disabled='{{ crons_disabled|default(false) }}'
when: drush_cron_translation.active
tags: 'cron'
......@@ -145,5 +147,6 @@
hour='{{ drush_cron_translation.hour["update"] }}'
minute='{{ drush_cron_translation.minute["update"] }}'
job='{{ composer_home_path }}/vendor/bin/drush -y @{{ inventory_hostname }}{{ drushSubkey }} l10n-update >/dev/null 2>&1'
disabled='{{ crons_disabled|default(false) }}'
when: drush_cron_translation.active
tags: 'cron'
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment