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
47 commits
Select commit Hold shift + click to select a range
efc5d22
Fixing linting so CI can work.
gregharvey Apr 14, 2023
1cb5a6d
More linting fixes.
gregharvey Apr 14, 2023
7d9463d
Downgrading Ubuntu due to Docker issues with ce-dev and latest.
gregharvey Apr 14, 2023
da0bb08
Making pipefail shell commands use /bin/bash.
gregharvey Apr 14, 2023
c24f6a3
Adding pipefail code to cachetool installer block.
gregharvey Apr 14, 2023
d69de84
Adding executable for drush install checker.
gregharvey Apr 14, 2023
2e9a3f2
Merge branch '1.x' into bug_fixes
gregharvey Apr 19, 2023
92107be
Fixing D7 ctools behaviour to match features handling.
gregharvey Apr 19, 2023
330a126
Merge branch '1.x' into bug_fixes-PR-1.x
gregharvey Apr 19, 2023
eca7316
Merge branch 'bug_fixes' into bug_fixes-PR-1.x
gregharvey Apr 19, 2023
e8a6920
Merge branch '1.x' into bug_fixes
gregharvey Apr 26, 2023
bb65b12
Jinja2 template looking for settings.php using wrong path.
gregharvey Apr 26, 2023
37c305b
Merge branch '1.x' into bug_fixes-PR-1.x
gregharvey Apr 26, 2023
15f8897
Merge branch 'bug_fixes' into bug_fixes-PR-1.x
gregharvey Apr 26, 2023
0b26394
Fixing config_generate for Drupal.
gregharvey May 11, 2023
00331c2
Making host checking more robust.
gregharvey May 11, 2023
f2bbc9e
Merge branch 'bug_fixes' into bug_fixes-PR-1.x
gregharvey May 11, 2023
2bbb925
Removing variable declaration that will break host check.
gregharvey May 11, 2023
287a23f
Merge branch 'bug_fixes' into bug_fixes-PR-1.x
gregharvey May 11, 2023
0f7a89d
Allow us to use deploy_code with a completely custom build and do not…
gregharvey May 11, 2023
2e04af8
Merge branch 'bug_fixes' into bug_fixes-PR-1.x
gregharvey May 11, 2023
f23a77b
Make PHP cachetool install optional.
gregharvey May 12, 2023
afdb3b9
Merge branch '1.x' into bug_fixes-PR-1.x
gregharvey May 12, 2023
9535d24
Merge branch 'bug_fixes' into bug_fixes-PR-1.x
gregharvey May 12, 2023
b955749
Fixing bug introduced by failed_when - need to check for return code …
gregharvey May 17, 2023
fdd74c5
Merge branch '1.x' into bug_fixes-PR-1.x
gregharvey May 17, 2023
9fb9149
Merge branch 'bug_fixes' into bug_fixes-PR-1.x
gregharvey May 17, 2023
a54569c
Moving where opcache clears get called so they can be excluded if nec…
gregharvey May 25, 2023
da2ebfd
Merge branch '1.x' into bug_fixes-PR-1.x
gregharvey May 25, 2023
f3790af
Merge branch 'bug_fixes' into bug_fixes-PR-1.x
gregharvey May 25, 2023
904c152
Merge branch '1.x' into bug_fixes
gregharvey Jun 21, 2023
a43c759
Fixing linting errors around white space.
gregharvey Jun 21, 2023
de9c0dd
Merge branch '1.x' into bug_fixes
gregharvey Jul 10, 2023
6d8b72c
The unarchive module requires 'dest' to be a directory.
gregharvey Jul 10, 2023
68fcca0
Merge branch '1.x' into bug_fixes-PR-1.x
gregharvey Jul 10, 2023
a377ef9
Merge branch 'bug_fixes' into bug_fixes-PR-1.x
gregharvey Jul 10, 2023
749664e
Fixing Drupal example templates.
gregharvey Jul 19, 2023
bd10146
Logically splitting tests and removing LGD because it's broken.
gregharvey Jul 19, 2023
273eacd
Adding extra plugin LGD needs.
gregharvey Jul 19, 2023
d5526d7
Merge branch '1.x' into bug_fixes-PR-1.x
gregharvey Jul 19, 2023
3b3d20d
Merge branch 'bug_fixes' into bug_fixes-PR-1.x
gregharvey Jul 19, 2023
54036ea
Clearing stat and apcu cache for PHP by default.
gregharvey Aug 8, 2023
0ebb707
Merge branch '1.x' into bug_fixes-PR-1.x
gregharvey Aug 8, 2023
5eb8b9a
Merge branch 'bug_fixes' into bug_fixes-PR-1.x
gregharvey Aug 8, 2023
07e2c21
Adding some perms handling for Drupal 8+ config sync where deploy and…
gregharvey Sep 22, 2023
edd2895
Merge branch '1.x' into bug_fixes-PR-1.x
gregharvey Sep 22, 2023
2d87d16
Merge branch 'bug_fixes' into bug_fixes-PR-1.x
gregharvey Sep 22, 2023
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/cache_clear/cache_clear-opcache/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ cache_clear_opcache:
# adapter: "127.0.0.1:9081" # Leave commented to automatically detect the adapter based on PHP version.
# Bins to clear.
clear_opcache: true
clear_apcu: false
clear_stat: false
clear_apcu: true
clear_stat: true
# cachetool_bin: "/path/to/cachetool.phar" # see _init for paths if undefined
15 changes: 15 additions & 0 deletions roles/database_apply/database_apply-drupal8/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,21 @@
- www_user != deploy_user
- previous_build_number == 0

- name: Fix file permissions for config directory.
ansible.builtin.file:
state: directory
path: "{{ deploy_path }}/{{ site.config_sync_directory }}"
owner: "{{ www_user }}"
group: "{{ www_user }}"
mode: '0775' # in this case often our deploy user is in the web user group and will need to be able to manipulate config
become: true
with_items: "{{ drupal.sites }}"
loop_control:
loop_var: site
when:
- www_user != deploy_user
- previous_build_number == 0

- name: Install Drupal.
ansible.builtin.command:
cmd: "{{ drush_bin }} -l {{ site.folder }} {{ site.install_command }}"
Expand Down