Skip to content
This repository was archived by the owner on Oct 8, 2025. It is now read-only.
Merged
Changes from all commits
Commits
Show all changes
20 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
432176b
ansible_module_requires_too_much_perms_just_for_autoscaling_managemen…
tymofiisobchenko Sep 11, 2025
951a538
Merge branch 'devel-1.x' into asg_management_workaround_improve-PR-de…
tymofiisobchenko Sep 11, 2025
467721b
Merge branch 'asg_management_workaround_improve' into asg_management_…
tymofiisobchenko Sep 11, 2025
3375249
fix condition
tymofiisobchenko Sep 11, 2025
0d482db
Merge branch 'devel-1.x' into asg_management_workaround_improve-PR-de…
tymofiisobchenko Sep 11, 2025
880a3e3
Merge branch 'asg_management_workaround_improve' into asg_management_…
tymofiisobchenko Sep 11, 2025
fb1b2e0
asg_management_workaround_improve_fix_conditions
tymofiisobchenko Sep 12, 2025
04d7a1d
Merge branch 'devel-1.x' into asg_management_workaround_improve-PR-de…
tymofiisobchenko Sep 12, 2025
9830a48
Merge branch 'asg_management_workaround_improve' into asg_management_…
tymofiisobchenko Sep 12, 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
4 changes: 2 additions & 2 deletions roles/deploy_code/tasks/cleanup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@
when:
- asg_management.name is defined
- asg_management.name | length > 0
- asg_management.refresh_asg_instances is defined
- asg_management.refresh_asg_instances | default(true)
- asg_management.refresh_asg_instances

- name: Start any services we stopped if the image re-mounting failed and ASG management is disabled.
Expand All @@ -288,7 +288,7 @@
when:
- deploy_code.service_action == "stop"
- deploy_code.services | length > 0
- not asg_management.refresh_asg_instances or asg_management.name is not defined
- asg_management.refresh_asg_instances is not defined or not asg_management.refresh_asg_instances or asg_management.name is not defined
# End of the squashFS block.

- name: Trigger an infrastructure rebuild.
Expand Down