Skip to content

Commit 379acb7

Browse files
authored
Ansible12 fixes pr 1.x (#773)
* Updating 'default()' filter paths in _init as an initial test. * Explicitly casting integers as strings for path creation. * Over refactored the variable setting! * Fixing Drupal 7 include in _init. * Another string truthy bug for Ansible 12. * Removing duplication in Mautic cron job paths.
1 parent eb60783 commit 379acb7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

roles/cron/cron_mautic/tasks/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
name: "{{ project_name }}_{{ build_type }}_{{ entry.job }}"
99
minute: "{{ entry.minute }}"
1010
hour: "{{ entry.hour | default(omit) }}"
11-
job: "env php {{ symfony_console_bin }} {{ entry.job }}"
11+
job: "{{ symfony_console_bin }} {{ entry.job }}"
1212
with_items: "{{ cron_mautic.entries }}"
1313
loop_control:
1414
loop_var: entry

0 commit comments

Comments
 (0)