Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
0a0f3f8
Updating 'default()' filter paths in _init as an initial test.
gregharvey Sep 16, 2025
e3e9bf8
Explicitly casting integers as strings for path creation.
gregharvey Sep 16, 2025
b3f0807
Over refactored the variable setting!
gregharvey Sep 16, 2025
3b9b024
Fixing Drupal 7 include in _init.
gregharvey Sep 16, 2025
52d3bed
Merge branch '1.x' into ansible12_fixes
gregharvey Sep 17, 2025
a43bca1
Another string truthy bug for Ansible 12.
gregharvey Sep 17, 2025
8dc5211
Merge branch '1.x' of github.com:codeenigma/ce-deploy into ansible12_…
gregharvey Sep 17, 2025
9802b0c
Merge branch 'ansible12_fixes' into ansible12_fixes-PR-1.x
gregharvey Sep 17, 2025
dbf718f
Merge branch '1.x' into ansible12_fixes
gregharvey Sep 24, 2025
286208c
Removing duplication in Mautic cron job paths.
gregharvey Sep 24, 2025
ca9abc7
Merge branch '1.x' of github.com:codeenigma/ce-deploy into ansible12_…
gregharvey Sep 24, 2025
0c9160b
Merge branch 'ansible12_fixes' into ansible12_fixes-PR-1.x
gregharvey Sep 24, 2025
a679d81
Fixing Matomo cron script.
gregharvey Sep 24, 2025
f848e6d
Merge branch '1.x' of github.com:codeenigma/ce-deploy into ansible12_…
gregharvey Sep 24, 2025
29d30dc
Merge branch 'ansible12_fixes' into ansible12_fixes-PR-1.x
gregharvey Sep 24, 2025
87dfaff
Merge branch '1.x' into ansible12_fixes
gregharvey Sep 24, 2025
3452375
Fixing task namespacing in Matomo meta role.
gregharvey Sep 24, 2025
16654ef
Merge branch 'ansible12_fixes' into ansible12_fixes-PR-1.x
gregharvey Sep 24, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions roles/_meta/deploy-matomo/tasks/main.yml
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
---
# Default Matomo role.

- import_role:
- ansible.builtin.import_role:
name: _init
- import_role:
- ansible.builtin.import_role:
name: deploy_code
- import_role:
- ansible.builtin.import_role:
name: database_backup
- import_role:
- ansible.builtin.import_role:
name: config_generate
- import_role:
- ansible.builtin.import_role:
name: database_apply
- import_role:
- ansible.builtin.import_role:
name: live_symlink
- import_role:
- ansible.builtin.import_role:
name: cache_clear/cache_clear-opcache
- import_role:
- ansible.builtin.import_role:
name: cache_clear/cache_clear-matomo
- import_role:
- ansible.builtin.import_role:
name: cron/cron_database_backup
- import_role:
- ansible.builtin.import_role:
name: cron/cron_matomo
- import_role:
name: _exit
- ansible.builtin.import_role:
name: _exit
6 changes: 3 additions & 3 deletions roles/cron/cron_matomo/templates/matomo-archive.sh.j2
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ archive(){
}

tasks(){
env php {{ live_symlink_dest }}/{{ webroot }}/console scheduled-tasks:run"
env php {{ live_symlink_dest }}/{{ webroot }}/console scheduled-tasks:run
}

fix(){
env php {{ live_symlink_dest }}/{{ webroot }}/console core:fix-duplicate-log-actions"
env php {{ live_symlink_dest }}/{{ webroot }}/console core:fix-duplicate-log-actions
}

cleanup(){
Expand All @@ -24,4 +24,4 @@ cleanup(){
archive
fix
tasks
cleanup
cleanup