
Problem
Given that:
- Aegir 3 assumes a global Drush, which must be Drush 8 or lower.
- Drush 9 and above operate only as site-local instances.
- Modern Drupal 8 codebase templates (e.g. via Composer) ship with Drush 9.
... Aegir 3 cannot currently (by default) host modern Drupal 8 sites.
Solutions
These are to be implemented in this order:
- Updating Drush 8 so that it can stop handing off control to a local Drush if a variable is set. Yes, this needs to be fixed upstream, but one of the Aegir maintainers (@ergonlogic) is already a Drush maintainer so, pending a discussion with the other maintainers, this should be doable (and would happen sooner if someone were able to sponsor the work).
- #2912579: [META] Move provision off of Drush / Provision 4 (Experimental, replaces Drush with Symfony)
- #2714641: META: Aegir NG Architecture / Aegir 5 (Experimental, replaces Drush with Ansible)
- Update the Aegir 3 code, everywhere, to be able to work with Drush 9+. This seems unlikely given that nobody's started working on it, and there are other initiatives to solve this problem more sustainably.
Workarounds
Don't create Platforms based on code that contains any site-local Drush 9+ code. This will involve one or more of:
- Moving Drush to the `require-dev` section of `composer.json` (or simply removing it).
- Deleting all other Drush artifacts from the Git repository.
- If deploying code directly from Packagist (and not a Git repository) via Aegir Deploy, start with a Drush-free template such as aegir/drupal-project-composer.
- Running BOA, which removes Drush 9 from the codebase automatically on the first verify of the platform.
- Disable cloaking, install Drush 8.4.6 locally, and call the site-local drush directly (see #65 below).
Original issue
I have been using the Drupal Composer project for building Drupal 8 sites successfully until my most recent project.
Turns out this one includes Drush 9 in composer.json.
When running a Verify task, global Drush kicks off to site-local Drush, so I get a "Command not found" error for provision save.
When I switch to Drush 8 in the composer.json, it works.
Steps to recreate, Must use PHP 7 in latest version of drupal-composer/drupal-project:
- composer create-project drupal-composer/drupal-project:8.x-dev /var/aegir/platforms/drupal8drush9 --stability dev --no-interaction
- Visit node/add/platform. Enter "drupal8drush9" into "Name", so you get "/var/aegir/platforms/drupal8drush9" as a publish path. NOTE: This is intentionally incorrect, the docroot for drupal-composer project is "web".
- The platform verify task will complete successfully! If you dig into the logs you will see drush apparently recognizes the composer root, and knows to look into /web all by itself:
Change working directory to /var/aegir/platforms/drupal8drush9/web
- Test verify on the backend: You will notice the platform alias does not exist!
- Test the first "backend invoke" from the verify task:
/usr/local/bin/drush --backend=2 --root=/var/aegir/platforms/drupal8drush9 --uri= provision-save '@platform_drupal8drush9' 2>&1
You will getCommand "provision-save" is not defined.
, which is from the new drush. - Try and add a site to the platform, you will get
Could not find provision alias named: @platform_drupal8drush9
The same thing happens if you set the platform publish path correctly. Verify task passes with success, but in reality, it failed.
Comments
Comment #2
jon pughComment #3
jon pughIf we can get the provision-save to not include --root, we might be able to work around this.
Comment #4
jon pughActually this breaks more than just provision-save...
Looks like all drush commands get passed off to site local drush.
rm -rf ./vendor/drush drush
, then re-run Verify task.drush @platform_alias
Command "provision-verify" is not defined.
Backend invoke: /var/aegir/platforms/drupal8drush9/web/../vendor/bin//drush --backend=2 @platform_d8d9 provision-verify 2>&1
Comment #5
erozqba CreditAttribution: erozqba commentedHaving the same problem here :
Comment #6
xmacinfoWe have installed Drush 8 instead of Drush 9 and we still get the same issue.
To verify the aliases, I type de following commands:
Can the drush alias staging.example.local miss the @ symbol?
Comment #7
xmacinfoActually, changing Drush to use version 8.1.16 allows to build the Drupal 8 platform. But we get the previous issue when trying to create a site.
Comment #8
asmyser CreditAttribution: asmyser commentedHas their been any movement on this?
We are at a stand-still with our d8 deployments utilizing Aegir because of this....
Comment #9
colanDowngrading priority as you can simply remove the site-local Drush from your platform.
If you still want to use
composer create-project
, you can, but you need to ensure it's being sourced from somewhere that doesn't depend on Drush as part of the build (i.e. included incomposer.json
). So instead of using the Composer deployment strategy with Aegir Deploy (where it sounds like the official package repository depends on it), use Composer (from source), where you would specify a Git repository with acomposer.json
that doesn't include it.Said another way, you could fork the official
composer.json
, which you're probably doing anyway, and remove the dependency.Comment #10
jon pughI think anything that blocks users from using the latest and greatest drupal and drush is critical.
@asmyser sadly the root of the problem is fundamental. Bootstrapping symfony 2 and 3 at the same time is simply not possible.
We are working hard on Provision4 which is a separate CLI so it won't conflict.
In the meantime if you can possibly downgrade to drush8 in your composer I believe it will work.
Thanks for your patience.
Comment #11
jon pughFollow this issue for progress.
#2912579: [META] Move provision off of Drush
Comment #12
colanComment #13
jon pughSo we figured it out!
drush8.phar uses the "drush finder" script: https://github.com/drush-ops/drush/blob/8.x/drush
The drush finder looks for a site local drush and if found, sets an environment variable in drush_startup(): https://github.com/drush-ops/drush/blob/8.x/includes/startup.inc#L212
I identified where drush actually finds the site local drush, and it turns out it checks for an environment variable: DRUSH_FINDER_SCRIPT
So if you set this environment variable before calling "drush" you will always get the global drush 8.
So , all we have to do is modify provision_backend_invoke() et al to set this environment variable to 1.
For right now, you can set this environment variable in your server to get Drupal Composer Project with Drush 9 on Aegir RIGHT NOW.
Please get the word out!
We will try to look at this tonight and tomorrow.
Big thanks to Chris and Derek for bouncing ideas around to get this solved!
Comment #14
Pls CreditAttribution: Pls as a volunteer commentedJon, can you clarify what command or file should be changed to achieve this workaround for Drupal 8.5.X sites with composer and drush9?
I tried settings variable in .env with "DRUSH_FINDER_SCRIPT=1" line and just setting on bash with aegir user "export DRUSH_FINDER_SCRIPT=1". It seems that the problem wasn't solved for me. Or maby I'm settings environment variable not properly.
So, would be nice to have some sort of guidance on how this actually can be used right now. Thanks for your awesome work! Love the presentations on DrupalCamp Montreal!
Comment #15
jon pughSome more R&D:
putenv() before the drush_invoke_process() does not work.
Changing $_SERVER before the drush_invoke_process() does not work.
If you run a hosting verify task with --debug you get this:
The code generating the logs "Backend invoke" is in drush: function _drush_backend_invoke()
Comment #16
jon pughFYI.
Basic
drush provision-save
does not work because drush hosting-task set's the --root option, which forces drush to switch to site local.Comment #17
jon pughAAAHhhh ok, so...
When hosting module calls "provision-save" it uses the option "--root" as a property of the new platform. This option is needed to properly set the publish_path.
The option "-root" is also used by drush core to determine where to run.
If we remove the "--root" option from provision-save command it works, but it doesn't save the necessary "root" option in the drush alias.
Comment #18
ergonlogicSo adding
--root
overrides the launcher/finder results? Have you found where in the Drush codebase that's happening?Comment #19
jon pugh--root is how it decides where to look, other than PWD.
I don't see that changing on the drush end
Perhaps we change provision-save to take --publish_path as the CLI option, then transform that to root when it writes the alias.
Another note: you can set the param $backend_options['drush-script'] also, but only in provision_backend_invoke(). The call to "proviosn-save" uses drush_process_invoke() instead, for some reason.
Comment #20
jon pughMore FYI:
in drush_backend_invoke_concurrent(), the $drush_path variable is set from $site_record['path-aliases']['%drush-script'] which is set from $backend_options['drush-script']:
Comment #22
jon pughPushed changes to branch
2953349-drush9-composer
in provision and hosting.module.Changes property "root" to "publish_path". New method Provision_Context_platform::save_platform() transforms publish_path back to root property.
This allows provision-save to work, and provision verify on the platform to work through git clone and composer install, but it's still failing immediately after that,...
Looking at this code in verify.provision.inc
Comment #23
jon pughUsing `drush` with the DRUSH_FINDER_SCRIPT environment variable set does not affect using `drush` with an alias that has `root` set.
No matter what I do, if I use an alias with 'root', any call to provision-* fails because drush finder takes over :(
Comment #25
jon pughLast commits allow a successful verification, but install still breaks, because at that point the alias is present and root is overriding drush and the DRUSH_FINDER_SCRIPT check.
Comment #26
jon pughYeah.
The environment variable trick won't work. drush alias --root takes precedence. :(
Comment #27
caldenjacobs CreditAttribution: caldenjacobs commentedAfter requiring Drush 8.x instead of 9.x in my repo composer.json, I'm using the following workaround:
SSH into the (Devshop) Aegir server as the 'aegir' user, cd into the appropriate platform directory, run "composer update --no-dev", and then from the (Devshop) Aegir interface, run a Git Pull task for the appropriate platform, then Verify Platform task, and all is well.
I hope this helps anyone who may be in a pinch because of this conflict :)
EDIT: fixed the typo in the composer update command, and removed a redundant step 🤦
Comment #28
caldenjacobs CreditAttribution: caldenjacobs commentedIt should be noted that running "composer update" in production is a terrible idea, and you should only do this if you're absolutely positive it won't break anything. Test this on a dev environment first, and be sure all of your required/desired package versions are specified in your composer.json.
Comment #29
colanWe've had good luck working around this by moving
drush/drush
to therequire-dev
section incomposer.json
. It works because core runs composer with--no-dev
, so drush doesn't get included in the build.Comment #30
colanI added better in-line documentation to the Create Platform form in the latest release of Aegir Deploy, which explains the workaround:
Deploy a Composer project from a Packagist repository
You may deploy this platform from a Composer package hosted on Packagist, the PHP package repository.
To provision a clean Drupal 8+ core codebase, one would typically enter
web
for the Docroot,drupal-composer/drupal-project
for the Composer Package Name, and8.x-dev
for the Composer Package Version. For more information on that project, see the project page on Packagist.However, you will most likely want to customize your installation by starting with this project as template, and then adding contributed and custom modules and themes. To do that, use the Deploy a Composer project from a Git repository option instead, which allows you to clone from your own Git repository instead.
It should be noted that this option is not currently working due to Including Drush 9 in a Composer-based platform breaks Provision's Verify. Use the Deploy a Composer project from a Git repository option as a workaround until the issue is resolved.
Deploy a Composer project from a Git repository
You may deploy this platform from a Composer project Git URL.
You'll need a Git repository started with something like the following:
composer create-project drupal-composer/drupal-project:8.x-dev new-drupal-project --stability dev --no-interaction
Note that until Including Drush 9 in a Composer-based platform breaks Provision's verify is resolved, the Drush dependency must be moved to the development section of the makefile in order for the build to work properly within Aegir. So you'll need to either move it from the
require
section to therequire-dev
section manually, or run a command like this:composer require --dev 'drush/drush:^9.0.0'
Comment #31
jon pughI've been mentally struggling with this problem for what seems like years now.
I've come to the conclusion that Aegir/Provision cannot support sites with drush 9 until Provision itself is not built on Drush 8.
Provision requires a globally installed Drush 8, full stop. Running global Drush 8 in a directory with Drush 9 installed (or when using an alias that has root set to that directory) will kick off the drush call to the site, full stop.
All of the hacks I've tried here are freaky workarounds. I've spoken to both Moshe and Greg about this, and we all agree it's a terrible idea to try to hack this into working.
My new position is to push forward with the Provision 4 CLI. It's time to rally the troops for this effort.
Separating hosting tool from application tool is the only way.
Comment #32
jon pughComment #33
colanThat's a bit harsh. We can simply update the documentation to state that
drush/drush
needs to be moved torequire-dev
(which works perfectly fine), and then mark this as fixed.Comment #34
jon pughOk, after discussions with omega on gitter, turns out they discovered a potential fix!
https://gitter.im/opendevshop/devshop?at=5c70550300aa630d9af631ff
https://github.com/omega8cc/drush/commit/b9257ea97593443b37763a1eddd0096...
We need to patch drush to allow us to customize the searching that happens. The paths are hard-coded!
I do feel that global drush 8 should be able to run with the same behavior in any folder. It just seems weird that it will kick off a totally separate app (drush 9) depending on what directory it is run in.
Comment #35
philosurfer CreditAttribution: philosurfer commentedSide note:
On ACSF we had 3 versions of Drush available to deal with any number of dependency issues.
-
drush6
envoked drush v6 (ACSF was Drupal 6)-
drush7
envoked drush v7-
drush8
envoked drush v8-
drush
envoked drush v9 respectivelyMy thoughts are that we could move default Drush to v9, and any Drush version specific command that need to run a older version can by being explicit (eg.
drush8 --whatever
). Which helps support the current need for Drupal8 sites and helps usher along a migration path that is sustainable to maintain.Comment #36
jon pughThis has nothing to do with what versions of drush are available, we could easily add those too.
The problem is that the internals of Aegir (provision) is built FROM drush commands, so it MUST use drush8. When sites use drush9, it explodes.
The other problem is that provision directly includes Drupal code, which is super risky and will break if incompatible libraries are loaded.
The third big pain is that, even if you had drush8 and drush9 as global commands, if you call "drush8" inside a drupal site that includes drush 9, it will pass the command to drush9.
The only solution is to make Provision a true standalone CLI with it's own libraries and a clean separation from itself and it's applications.
Comment #37
colanNot exactly. We've been talking about updating Drush 8 so that it can stop handing off control to a local Drush if a variable is set. This shouldn't be too much of a problem to fix upstream, given that @ergonlogic is already a Drush maintainer (pending a discussion with the other maintainers).
We started working on this internally, but then priorities shifted, and we haven't got back to it yet.
@Jon Pugh: So it sounds like you're not actively working on fixing this in the 3.x branch? As such, I've unassigned you. Please re-assign this to yourself if I'm mistaken.
In any case, the issue summary needs to be updated with all of the comments we've got here:
* Possible solutions, and
* Workarounds.
Comment #38
memtkmcc CreditAttribution: memtkmcc at Omega8.cc commentedWe have fixed this in BOA by removing Drush 9 from the codebase automatically on the first verify of the platform, when Drush 9 presence doesn't break anything, because Drupal is not bootstrapped yet, because no site is installed yet. We have added the cleanup code both in Provision and the bash scripts Provision uses to fix permissions and ownership. The problem is gone now.
Comment #39
colanThat's yet another good workaround then. :)
Comment #40
philosurfer CreditAttribution: philosurfer commentedThis issue is really starting to make this platform a non-starter for Drupal 8 sites.
We can no longer run the following:
- custom migrate API modules
- config_update
- search_api
All of which are critical to running contemporary multisite platforms.
I recommend making Drush 9 the default `drush` and any deprecated need of Drush to run be explicitly called using `drush8`.
Comment #41
colanJust updated the IS with a problem description, solutions and workarounds.
Note that funding would help make this problem go away sooner.
Comment #42
colanComment #43
colanBetter title.
Comment #44
memtkmcc CreditAttribution: memtkmcc at Omega8.cc commentedI should add that while BOA removes site local Drush 9 to prevent conflicts with Drush 8 which is used in Aegir backend, BOA also adds system-wide Drush 9, and even automatically converts all Drush aliases to make them compatible with Drush 9 (and soon Drush 10), so you can still use `drush9 @sitealias task` or `drush8 @sitealias task` on command line and you will not be affect by Aegir compatibility with Drush.
It's also important to note that switching to Drush9 would be pointless, because it would remove support for hosting Drupal 7 and Drupal 6 LTS sites, including Aegir own control panel..
Comment #45
colanPlease update the IS with that new info. :)
Comment #46
philosurfer CreditAttribution: philosurfer commentedI would like to tangentially like to point out that Drush 8 is now 8.3.2 and Aegir's default Drush install is 8.1.2.
Manually upgrading to Drush 8.3.2 seemed to solve some of our issues.
In regards @memtkmcc 's comment, I was working on the misinformed premise that Drupal 7 worked with Drush 9, and now I can see that it is not via the compatibility grid here: https://docs.drush.org/en/8.x/install/
That being said, having multiple Drush version support via the default install of Aegir would be ideal, sans the extra management and potential new user confusion.
Comment #47
gogowitsch CreditAttribution: gogowitsch as a volunteer and at QuoData GmbH Quality & Statistics for ÖQUASTA commentedJust improved the issue description.
Comment #48
chriszz CreditAttribution: chriszz commentedIs this still supposed to be the case with the current recommended git-rep For Drupal 8.8.1?
I installed Drupal 8.8.1 with AEGIR using the composer-method.
Deployment strategy: Deploy a Composer project from a Git repository
Docroot: web
GIT URL: https://github.com/drupal/recommended-project.git
Branch/tag: 8.8.1
On the "add platform" page there is an advice to add DRUSH do require-dev.
If I ignore this advice, everything is fine. If I issue the composer command to put DRUSH into require-dev - than I get the problem of incompatibility. I was able to resolve this by removing Drush.
Comment #49
colanI certainly haven't tried it with the new official project repos (they didn't exist when those docs were written) so thanks for the report. Let's wait for some others to confirm.
Comment #50
agaq CreditAttribution: agaq as a volunteer commentedThe recommended project installed from git repository works for me too. These two options worked:
1) Create platform with drupal/recommended-project:
Deployment strategy: Deploy a Composer project from a Git repository
Docroot: web
GIT URL: https://github.com/drupal/recommended-project.git
Branch/tag: 8.8.2
2) Create platform with aegir/drupal-project-composer:
Deployment strategy: Deploy a Composer project from a Git repository
Docroot: web
GIT URL: https://gitlab.com/aegir/drupal-project-composer
Branch/tag: aegir3-8.x
In both cases:
- the platform is operational and sites can be created from it
- the platform "breaks" as expected (verify fails) as soon as I add a module that requires and loads Drush 9 (eg after a "$ composer require drupal/gdpr:^2.0")
Some collateral observations from the test (which may warrant the creation of separate tickets?):
Comment #51
colanComment #52
pierregermain CreditAttribution: pierregermain commentedThanks @agaq from comment #50 1) Create platform with drupal/recommended-project works for drupal 8.9.0
This is what I did: Create the drupal recommended project using composer
And after that I could enter the information as explained in the comment #50 from the aegir UI (using Branch/tag: 8.9.0). No errors shown creating sites nor creating platforms. No more tests have I done to date.
Comment #53
socialnicheguru CreditAttribution: socialnicheguru commentedThis also means that Aegir cannot be used with Drupal 9 as Drush 9 and above is required.
Comment #54
memtkmcc CreditAttribution: memtkmcc at Omega8.cc commentedAegir fully supports Drupal 9 with recent patches I have submitted to head. We don't need Drush 9 for anything, perhaps apart from running Drush commands provided by D9 contrib on command line, because then Drush 9 needs different aliases, but they are easy to generate.
#3150004: BOA backport Drupal 9 support
Comment #55
agaq CreditAttribution: agaq as a volunteer commentedWhat does this mean in practical terms - that an updated version (eg a debian package 3.188) incorporating these recent patches will be released in the near future, and that it will then be possible to install Drupal 9 using the git repository https://gitlab.com/aegir/drupal-project-composer using a branch/tag "9.0"?
Comment #56
agaq CreditAttribution: agaq as a volunteer commentedhttps://docs.drush.org/en/master/install/#drupal-compatibility indicates that Drupal 9 requires Drush 10, not Drush 9.
Comment #57
memtkmcc CreditAttribution: memtkmcc at Omega8.cc commented@agaq -- BOA (our hosting stack at omega8.cc, which includes Aegir HEAD) is running on Drush 8 for Aegir backend, plus drush8 and drush9 on command line to support Drupal 6, 7 and 8 also on command line. We haven't tested the differences on command line yet, but will include drush10 too, if that's actually necessary. The official Drupal compatibility chart published by Drush is not really what the actual Drush versions compatibility is, because even Drush 8 is still patched for Drupal 9 minimal compatibility to allow transitions between versions supported. That's also why Aegir can run on latest Drush 8 head and be able to fully support Drupal 9 sites installation, cloning, migration etc. There can be still some fine details to iron out, but it just works on BOA with all recent patches included. They should be a part of next Aegir release, hopefully.
Comment #58
jon pughBringing this up to speed.
The 4.x branch is now active. I'm using for devshop now in order to create a final D7 era release.
Comment #59
Chris MaissanAm I correct in understanding Aegir 3.x does not support Drupal 9 sites, and we need to wait for 4.x or 5.x?
Comment #60
Chris MaissanUpdate: We were able to install a Drupal 9 site on Aegir 3.192 after upgrading Drush to 8.4.6.
Comment #61
kristofferwiklund CreditAttribution: kristofferwiklund at Websystem commentedSame here. But you can not have Drush installed the the vendor folder of Drupal 9. But without that it works.
Playing around of having drush10 installed outside the Drupal 9 folder. Kind of works, but there are some minor bugs but there is work around for them.
Comment #62
froboy@kristofferwiklund if you have any notes or tips I'd love to see them. We're running into the same issue at the moment.
Comment #63
froboyI have one more workaround for the pile... we're building a project that lists Drush 10 as a direct (not dev) dependency, so we're not able to move it to "require-dev". I've been successful in aliasing our project drush back to 8 and then deploying to Aegir without conflict.
composer require drush/drush:"8.4.6 as 10.3.6" --update-with-all-dependencies
D9 sites will... not be super happy with this, but it should be an option as long as you're not trying to do much fancy with drush in your Aegir environment.
Comment #64
colanKindly add that to the list in the IS? :)
Comment #65
froboyIt took me some time to confirm my method (which was informed by a lot of this thread, so thanks all).
This setup allows you run Drupal 8 and Drupal 9 platforms on the same Aegir server, while not breaking Aegir's functionality:
- We first need to disable cloaking as per this post. Either do that per-site by adding
$options['provision_db_cloaking'] = FALSE;
to drushrc.php and then re-verifying, or globally using the code from these PRs.- We have packages that list Drush 10 as a dependency so we need to override it. This can either be done in the base composer.json OR somewhere in your deploy pipeline. Drush 10 has a lot of dependency tentacles that don't like it going away, so the other packages are required in order to keep those from getting unhappy.
composer require drush/drush:"8.4.6 as 10.3.6" vlucas/phpdotenv:"^5.3" consolidation/robo:"^1.1.5" --update-with-all-dependencies --update-no-dev --no-scripts
- Now we have a platform-local Drush 8.4.6... and since it's still Drush 8, the Aegir aliases still work! But... we do need to either call drush directly or alias it:
Comment #66
froboyComment #67
socialnicheguru CreditAttribution: socialnicheguru commentedI still cannot install Drupal 9 based sites using Aegir.
Any pointers
Comment #68
Chris MaissanWhat error do you get?
Comment #69
aks22 CreditAttribution: aks22 commentedComment #63 and #65 were the base we used to achieve the solution.
The steps which we followed to get the site up and running on Aegir are below.
1. Created a platform with Drupal 9.2 using composer but didn't added any information about drush in composer.json file.
2. Added new platform in Aegir and Verified the platform. We used composer based option in creation of platform.
3. Added
composer require drush/drush:"8.4.6 as 10.3.6"
in the platform created repository and pushed the changes.4. On web server pulled the new changes i.e. drush inclusion in composer file.
5. Added new site using this platform.
6. Verify site.
Comment #70
matslats CreditAttribution: matslats as a volunteer commentedThanks Colan this worked very well for provisioning a site.
For anyone trying to migrate into a site provisioned using drush8, you'll want these older versions of the migrate modules:
Comment #71
porchlight CreditAttribution: porchlight as a volunteer and at Advisor Websites commentedAnybody by chance have Aegir 3 working with Drupal 10? We were able to get Drupal 9, but I've tried to apply some of the above solutions to Drupal 10 and not having any luck.Never mind, I see the Drupal 10 issue now :( #3353492: Drupal 10 support for Aegir 3Comment #72
memtkmcc CreditAttribution: memtkmcc at Omega8.cc commentedTL;DR BOA supports Drupal 10 while running slightly modified Drush 8. We don’t need newer Drush versions and we shouldn’t.
Longer version follows.
Aegir 3 can work only with Drush 8 because it’s the only still supported Drush version which can be reliably used as standalone Drush.
All post-8 Drush versions up to 11 could theoretically be used as standalone (on command line but not with Aegir) if their dependencies matched the managed Drupal site code, which in practice happens rarely and thus should be used as site-local only.
Composer doesn’t care about possible versions conflicts between Drush and Drupal and you could get pretty different versions of the same Drush release installed depending on when you have installed it. This makes using them as standalone a completely unpredictable mess.
That’s why Drush 12 has been officially announced as the first version which can’t be used as standalone at all — no matter how hard you would try.
The only question was therefore: can we make the old good Drush 8 able to avoid conflicts despite aggressive deprecation coming with Drupal 10?
It seemed impossible initially, so we at Omega8.cc launched a complete rewrite of our BOA stack to make it use Aegir 3 without Drush — at least without the way it was always used, based on bootstrapping Drupal directly, with the intention to use it as a bridge with our own backend code, not affected by any Drush and Drupal compatibility issues.
It turned into serious rabbit hole and we have realized we couldn’t make it a mature enough project before Drupal 9 EOL, which in turn got us back in the dirty hacking and trying to make things work, removing obstacles as we go through tedious and frustrating debugging and testing cycles.
We didn’t believe it was possible, really, but we just wanted to give it a try before taking the risk of switching horses completely and without option to go back.
Guess what.. it worked! We are planning to release it tonight and upgrade all hosted Aegir systems later this night. More details are coming once we have more free time.
Take a look: https://github.com/omega8cc/boa/issues/1678#issuecomment-1778803057
Comment #73
porchlight CreditAttribution: porchlight as a volunteer and at Advisor Websites commentedHey @memtkmcc glad you got it figured out! Would you mind sharing what would work for those of us not on the BOA stack? I tried installing the BOA drush 8 fork and using your D10 patch posted on your github, but I must be missing something still as my site install task still contains errors. Are you installing drush 11/12 on the site level? Any help or direction would be greatly appreciated. Thanks for all your efforts!
Comment #74
memtkmcc CreditAttribution: memtkmcc at Omega8.cc commentedHey @porchlight, we are currently preparing to backport our patches to all relevant parts of Aegir and will also post a how-to to list requirements and changes normally automated in BOA but requiring some simple manual work for standalone Aegir. New issues will be opened to track this process.
Comment #75
porchlight CreditAttribution: porchlight as a volunteer and at Advisor Websites commented@memtkmcc AMAZING! Looking forward to it! Thanks for the quick reply
Comment #76
jon pughDevShop runs hosting 4.x and provision 4.x in a composer platform, which includes drush8.
Then, drush 10/11 is installed globally.
Running
drush @hostmaster
works, properly passes from drush 11 to site-local drush8 in hostmaster.https://github.com/opendevshop/devshop/blob/1.x/src/DevShop/Control/comp...
It uses provision 4.x and hosting 4.x branch, which is just a stopgap for current generation. Lots of hacks to get DevShop more stable. I added drush9+ yml alias ge eration so "drush sa" works with both drush 8 and 9+.
If someone wants to take this back to aegir, feel free.
It works.
Comment #77
matslats CreditAttribution: matslats as a volunteer commentedTrying to use your composer file @jon-pugh
"The `url` supplied for the path (../../../devmaster) repository does not exist"
Comment #78
jon pughThe file is for devshop, it will need to be updated for aegir.
I'll try to set aside some time this week to do this.