crontasks 146 B

123456
  1. {% macro crontasks(tasks) -%}
  2. */5 * * * * /php-cron
  3. {% for task in tasks -%}
  4. {{ task.schedule }} {{ task.command }}
  5. {% endfor -%}
  6. {%- endmacro %}