Skip to content
This repository has been archived by the owner on Feb 13, 2023. It is now read-only.

Commit

Permalink
Fixes #915: Allow Java JDK to be installed by itself.
Browse files Browse the repository at this point in the history
  • Loading branch information
geerlingguy committed Oct 6, 2016
1 parent 8181299 commit d1288dd
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
1 change: 1 addition & 0 deletions default.config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,7 @@ installed_extras:
# - blackfire
- drupalconsole
# - elasticsearch
# - java
- mailhog
# - memcached
# - newrelic
Expand Down
7 changes: 6 additions & 1 deletion provisioning/playbook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,12 @@
- { role: geerlingguy.redis, when: '"redis" in installed_extras' }
- { role: geerlingguy.php-redis, when: '"redis" in installed_extras' }
- { role: geerlingguy.ruby, when: '"ruby" in installed_extras' }
- { role: geerlingguy.java, when: '"solr" in installed_extras or "selenium" in installed_extras or "elasticsearch" in installed_extras'}
- role: geerlingguy.java
when: >
"java" in installed_extras or
"solr" in installed_extras or
"selenium" in installed_extras or
"elasticsearch" in installed_extras
- { role: arknoll.selenium, when: '"selenium" in installed_extras' }
- { role: geerlingguy.solr, when: '"solr" in installed_extras' }
- { role: geerlingguy.elasticsearch, when: '"elasticsearch" in installed_extras' }
Expand Down

0 comments on commit d1288dd

Please sign in to comment.