Skip to content
This repository was archived by the owner on Oct 8, 2025. It is now read-only.

Commit ded64ae

Browse files
gregharveydrazenCEfiliprupicfiliptymofiisobchenko
authored
Ansible12 fixes pr devel 1.x (#767)
* Php unix socket pr 1.x (#724) * Moving cachetool adapter setup to the installer role and adding a test. * Updating cachetool documentation. * Php unix socket pr 1.x (#726) * Moving cachetool adapter setup to the installer role and adding a test. * Updating cachetool documentation. * Making sure _cachetool_adapter is always set. * Optional-drush-cr-before-import (#728) * 73171 fixing cachetool checks fpm pr 1.x (#729) * skipping cachetool check when no fpm * remove empty line --------- Co-authored-by: filip <filip.rupic@codeenigma.com> * asg_management_fix_and_improve (#733) * asg_management_fix_and_improve * asg_management_fix_and_improve * asg_management_fix_and_improve * asg_management_fix_and_improve * asg_management_fix_and_improve * Adding-delay-opcache-status-check (#737) * Adding-delay-opcache-status-check * Removing-failed-when * fix_var_name_for_asg_management (#739) * replace_ansible_pause_module (#747) * fix_asg_management_workaround_for_squashfs (#754) * fix_asg_management_workaround_for_squashfs * fix_asg_management_workaround_for_squashfs * fix_asg_management_workaround_task_condition (#756) * aws_profile_for_asg_management (#758) * aws_profile_for_asg_management * aws_profile_for_asg_management_case_with_default_profile_absent * ansible_module_requires_too_much_perms_just_for_autoscaling_managemen… (#761) * ansible_module_requires_too_much_perms_just_for_autoscaling_management_so_replacing_with_aws_cli_from_role * fix condition * asg_management_workaround_improve_fix_conditions * remove extra line * 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. --------- Co-authored-by: drazenCE <140631110+drazenCE@users.noreply.github.com> Co-authored-by: Filip Rupic <123341158+filiprupic@users.noreply.github.com> Co-authored-by: filip <filip.rupic@codeenigma.com> Co-authored-by: tymofiisobchenko <104431720+tymofiisobchenko@users.noreply.github.com>
1 parent c76f38d commit ded64ae

2 files changed

Lines changed: 6 additions & 10 deletions

File tree

roles/_init/tasks/custom.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
---
2-
3-
# Nothing to do here.
2+
# Nothing to do here.

roles/_init/tasks/drupal7.yml

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,11 @@
11
---
2-
- name: Define path to drush for this build.
3-
set_fact:
4-
drush_bin: "{{ drush_bin | default('{{ bin_directory }}/drush.phar') }}"
5-
6-
- name: Define path to drush for currently live build. # usually the same as drush_bin for Drupal 7
7-
set_fact:
8-
drush_live_bin: "{{ drush_live_bin | default('{{ bin_directory }}/drush.phar') }}"
2+
- name: Define paths to drush for this build.
3+
ansible.builtin.set_fact:
4+
drush_bin: "{{ drush_bin | default(bin_directory + '/drush.phar') }}"
5+
drush_live_bin: "{{ drush_live_bin | default(bin_directory + '/drush.phar') }}" # usually the same as drush_bin for Drupal 7
96

107
- name: Ensure we have a drush binary.
11-
import_role:
8+
ansible.builtin.import_role:
129
name: cli/drush
1310

1411
- name: Ensure we have a cachetool binary and configuration.

0 commit comments

Comments
 (0)