This repository was archived by the owner on Feb 13, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +9
-2
lines changed
Expand file tree Collapse file tree 4 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 1818- src : geerlingguy.daemonize
1919 version : 1.1.1
2020- src : geerlingguy.drupal
21- version : 2.3.1
21+ version : 2.4.0
2222- src : geerlingguy.drupal-console
2323 version : 1.1.0
2424- src : geerlingguy.drush
Original file line number Diff line number Diff line change @@ -37,6 +37,10 @@ Set `drupal_deploy` to `true` and `drupal_build_composer*` to `false` if you wou
3737 - ` dir ` : The directory into which the repository will be checked out
3838 - ` accept_hostkey ` : Whether to automatically accept the Git server's hostkey on the first connection.
3939
40+ You can also control whether a ` composer install ` is run after the git clone is finished using the following variable:
41+
42+ drupal_deploy_composer_install: yes
43+
4044### Build a project from a Drush Make file
4145
4246 drupal_build_makefile: false
Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ drupal_deploy_version: master
77drupal_deploy_update : true
88drupal_deploy_dir : " /var/www/drupal"
99drupal_deploy_accept_hostkey : no
10+ drupal_deploy_composer_install : yes
1011
1112# Set this to 'true' and 'drupal_build_composer*' to 'false' if you would like
1213# to build a Drupal make file with Drush.
Original file line number Diff line number Diff line change 2828 composer :
2929 command : install
3030 working_dir : " {{ drupal_deploy_dir }}"
31- when : drupal_deploy_composer_file.stat.exists == true
31+ when :
32+ - drupal_deploy_composer_file.stat.exists == true
33+ - drupal_deploy_composer_install == true
3234 become : no
You can’t perform that action at this time.
0 commit comments