Skip to content
This repository was archived by the owner on Oct 8, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
6b8eb88
Php unix socket pr 1.x (#724)
gregharvey Jul 17, 2025
dc7b24e
Php unix socket pr 1.x (#726)
gregharvey Jul 17, 2025
e705aee
Optional-drush-cr-before-import (#728)
drazenCE Jul 28, 2025
2aab810
73171 fixing cachetool checks fpm pr 1.x (#729)
filiprupic Jul 29, 2025
c468317
asg_management_fix_and_improve (#733)
tymofiisobchenko Aug 22, 2025
3b852e7
Adding-delay-opcache-status-check (#737)
drazenCE Aug 28, 2025
34c76c0
fix_var_name_for_asg_management (#739)
tymofiisobchenko Sep 1, 2025
87487c7
replace_ansible_pause_module (#747)
tymofiisobchenko Sep 4, 2025
4d8e209
fix_asg_management_workaround_for_squashfs (#754)
tymofiisobchenko Sep 5, 2025
ae07a66
fix_asg_management_workaround_task_condition (#756)
tymofiisobchenko Sep 8, 2025
decb6fb
aws_profile_for_asg_management (#758)
tymofiisobchenko Sep 9, 2025
92cd722
ansible_module_requires_too_much_perms_just_for_autoscaling_managemen…
tymofiisobchenko Sep 12, 2025
0a0f3f8
Updating 'default()' filter paths in _init as an initial test.
gregharvey Sep 16, 2025
81dc254
Merge branch 'ansible12_fixes' into ansible12_fixes-PR-devel-1.x
gregharvey Sep 16, 2025
e3e9bf8
Explicitly casting integers as strings for path creation.
gregharvey Sep 16, 2025
a111894
Merge branch 'ansible12_fixes' into ansible12_fixes-PR-devel-1.x
gregharvey Sep 16, 2025
b3f0807
Over refactored the variable setting!
gregharvey Sep 16, 2025
940f0d8
Merge branch 'ansible12_fixes' into ansible12_fixes-PR-devel-1.x
gregharvey Sep 16, 2025
3b9b024
Fixing Drupal 7 include in _init.
gregharvey Sep 16, 2025
d7dbd62
Merge branch 'devel-1.x' of github.com:codeenigma/ce-deploy into ansi…
gregharvey Sep 16, 2025
cd19ca8
Merge branch 'ansible12_fixes' into ansible12_fixes-PR-devel-1.x
gregharvey Sep 16, 2025
9c8574f
Updating 'default()' filter paths in _init as an initial test. (#766)
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
9921fc4
Merge branch 'devel-1.x' of github.com:codeenigma/ce-deploy into ansi…
gregharvey Sep 17, 2025
9b45163
Merge branch 'ansible12_fixes' into ansible12_fixes-PR-devel-1.x
gregharvey Sep 17, 2025
eb60783
Ansible12 fixes pr 1.x (#769)
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
a1239a3
Merge branch 'devel-1.x' of github.com:codeenigma/ce-deploy into ansi…
gregharvey Sep 24, 2025
2515de3
Merge branch 'ansible12_fixes' into ansible12_fixes-PR-devel-1.x
gregharvey Sep 24, 2025
379acb7
Ansible12 fixes pr 1.x (#773)
gregharvey Sep 24, 2025
a679d81
Fixing Matomo cron script.
gregharvey Sep 24, 2025
69e1243
Merge branch 'devel-1.x' of github.com:codeenigma/ce-deploy into ansi…
gregharvey Sep 24, 2025
59fdd31
Merge branch 'ansible12_fixes' into ansible12_fixes-PR-devel-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
4bb6634
Merge branch 'ansible12_fixes' into ansible12_fixes-PR-devel-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